-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
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
Feature/ollama #847
Feature/ollama #847
Conversation
0c4004e
to
21adff6
Compare
Codecov ReportAttention: Patch coverage is
📢 Thoughts on this report? Let us know! |
39a3a2e
to
7706bee
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small docs issues, otherwise 🦙 ✅
```python | ||
import os | ||
|
||
from griptape.config import StructureConfig | ||
from griptape.drivers import OllamaPromptDriver | ||
from griptape.tools import Calculator | ||
from griptape.tokenizers import SimpleTokenizer | ||
from griptape.structures import Agent | ||
|
||
|
||
agent = Agent( | ||
config=StructureConfig( | ||
prompt_driver=OllamaPromptDriver( | ||
model="llama3", | ||
), | ||
), | ||
) | ||
agent.run("What color is the sky at different times of the day?") | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this code block is missing a closing markdown tag (```) and has a few extraneous imports.
c242e00
to
d0284b8
Compare
adff5ba
to
d0284b8
Compare
d0284b8
to
3cc531e
Compare
📚 Documentation preview 📚: https://griptape--847.org.readthedocs.build//847/