Skip to content

Commit

Permalink
few changes - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Madhuvod committed Dec 12, 2024
1 parent be85460 commit ece3f8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def main():
legal_researcher = Agent(
name="Legal Researcher",
role="Legal research specialist",
model=Ollama(id="llama3.1"),
model=Ollama(id="llama3.1:8b"),
knowledge=st.session_state.knowledge_base,
search_knowledge=True,
instructions=[
Expand All @@ -98,7 +98,7 @@ def main():
contract_analyst = Agent(
name="Contract Analyst",
role="Contract analysis specialist",
model=Ollama(id="llama3.1"),
model=Ollama(id="llama3.1:8b"),
knowledge=knowledge_base,
search_knowledge=True,
instructions=[
Expand All @@ -112,7 +112,7 @@ def main():
legal_strategist = Agent(
name="Legal Strategist",
role="Legal strategy specialist",
model=Ollama(id="llama3.1"),
model=Ollama(id="llama3.1:8b"),
knowledge=knowledge_base,
search_knowledge=True,
instructions=[
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
phidata==2.5.33
phidata==2.6.7
streamlit==1.40.2
qdrant-client==1.12.1
pypdf
python-dotenv
ollama==0.1.6
ollama==0.4.4

0 comments on commit ece3f8e

Please sign in to comment.