mirror of
https://github.com/xtekky/gpt4free.git
synced 2025-12-15 14:51:19 -08:00
Fix typo inference
This commit is contained in:
parent
c9755196f8
commit
350a07693a
2 changed files with 5 additions and 5 deletions
|
|
@ -72,7 +72,7 @@ Curious to see what G4F can do? Dive into a live demonstration and visit the [of
|
|||
- [🎨 Image Generation](#-image-generation)
|
||||
- [🌐 Web Interface](#-web-interface)
|
||||
- [🖥️ Local Inference](https://github.com/gpt4free/g4f.dev/blob/main/docs/local.md)
|
||||
- [🤖 Interference API](#-interference-api)
|
||||
- [🤖 Inference API](#-inference-api)
|
||||
- [🛠️ Configuration](https://github.com/gpt4free/g4f.dev/blob/main/docs/configuration.md)
|
||||
- [📱 Run on Smartphone](#-run-on-smartphone)
|
||||
- [📘 Full Documentation for Python API](#-full-documentation-for-python-api)
|
||||
|
|
@ -219,11 +219,11 @@ python -m g4f --port 8080 --debug
|
|||
|
||||
---
|
||||
|
||||
### 🤖 Interference API
|
||||
### 🤖 Inference API
|
||||
|
||||
The **Interference API** enables seamless integration with OpenAI's services through G4F, allowing you to deploy efficient AI solutions.
|
||||
The **Inference API** enables seamless integration with OpenAI's services through G4F, allowing you to deploy efficient AI solutions.
|
||||
|
||||
- **Documentation**: [Interference API Docs](https://github.com/gpt4free/g4f.dev/blob/main/docs/interference-api.md)
|
||||
- **Documentation**: [Inference API Docs](https://github.com/gpt4free/g4f.dev/blob/main/docs/inference-api.md)
|
||||
- **Endpoint**: `http://localhost:1337/v1`
|
||||
- **Swagger UI**: Explore the OpenAPI documentation via Swagger UI at `http://localhost:1337/docs`
|
||||
- **Provider Selection**: [How to Specify a Provider?](https://github.com/gpt4free/g4f.dev/blob/main/docs/selecting_a_provider.md)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -104,7 +104,7 @@ setup(
|
|||
long_description=long_description,
|
||||
packages=find_packages(),
|
||||
package_data={
|
||||
'g4f': ['g4f/interference/*', 'g4f/gui/client/*', 'g4f/gui/server/*', 'g4f/Provider/npm/*', 'g4f/local/models/*']
|
||||
'g4f': ['g4f/inference/*', 'g4f/gui/client/*', 'g4f/gui/server/*', 'g4f/Provider/npm/*', 'g4f/local/models/*']
|
||||
},
|
||||
include_package_data=True,
|
||||
install_requires=INSTALL_REQUIRE,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue