We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to call OpenAI-like models through an API?
The text was updated successfully, but these errors were encountered:
You can use the LiteLLMModel which is a wrapper using litellm.
LiteLLMModel
litellm
Sorry, something went wrong.
Hellow @win4r!
You can use our LiteLLM integration and just specify the model_id of your model:
model_id
from smolagents import LiteLLMModel model = LiteLLMModel(model_id="gpt-4o")
Then just start an agent with this:
from smolagents import CodeAgent agent = CodeAgent(tools=[], model=model) agent.run("What's the 20th number in the Fibonacci sequence?")
No branches or pull requests
How to call OpenAI-like models through an API?
The text was updated successfully, but these errors were encountered: