mirror of
https://github.com/xtekky/gpt4free.git
synced 2026-01-25 05:50:51 -08:00
- Changed `api_base` to `base_url` in multiple provider files for consistency. - Updated method signatures and internal references to use `base_url` instead of `api_base`. - Adjusted the `OpenaiTemplate` class to accommodate the new `base_url` parameter. - Enhanced the `ClientFactory` to support custom provider creation with `base_url`. - Modified API request handling in the backend to align with the new naming convention.
27 lines
No EOL
882 B
Python
27 lines
No EOL
882 B
Python
import openai
|
|
|
|
# Set your Hugging Face token as the API key if you use embeddings
|
|
# If you don't use embeddings, leave it empty
|
|
openai.api_key = "YOUR_HUGGING_FACE_TOKEN" # Replace with your actual token
|
|
|
|
# Set the API base URL if needed, e.g., for a local development environment
|
|
openai.base_url = "http://localhost:1337/v1"
|
|
|
|
def main():
|
|
response = openai.ChatCompletion.create(
|
|
model="gpt-3.5-turbo",
|
|
messages=[{"role": "user", "content": "write a poem about a tree"}],
|
|
stream=True,
|
|
)
|
|
if isinstance(response, dict):
|
|
# Not streaming
|
|
print(response.choices[0].message.content)
|
|
else:
|
|
# Streaming
|
|
for token in response:
|
|
content = token["choices"][0]["delta"].get("content")
|
|
if content is not None:
|
|
print(content, end="", flush=True)
|
|
|
|
if __name__ == "__main__":
|
|
main() |