Skip to content
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

[Bug] Outdated dependencies in example #285

Merged
merged 3 commits into from
Oct 3, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(mirascope): app need older version to work
LatentDream committed Oct 3, 2024
commit 3d56431890f2cfda098f5f78a7d22681d4acb4ee
2 changes: 1 addition & 1 deletion examples/streamlit/mirascope-url-extractor/app.py
Original file line number Diff line number Diff line change
@@ -3,8 +3,8 @@
from urllib.request import Request, urlopen

from bs4 import BeautifulSoup
from mirascope.anthropic import AnthropicExtractor, AnthropicCallParams
from mirascope.base.tools import DEFAULT_TOOL_DOCSTRING
from mirascope.anthropic import AnthropicExtractor, AnthropicCallParams
from pydantic import BaseModel, Field, computed_field, create_model
import streamlit as st

9 changes: 5 additions & 4 deletions examples/streamlit/mirascope-url-extractor/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
mirascope[anthropic]>=0.9.0
streamlit
pydantic-settings
beautifulsoup4
mirascope[anthropic]==0.9.1
streamlit==1.33.0
pydantic-settings==2.2.1
beautifulsoup4==4.12.3
anthropic==0.23.1