few changes - 2
This commit is contained in:
parent
be854606ca
commit
ece3f8e88f
2 changed files with 5 additions and 7 deletions
|
|
@ -84,7 +84,7 @@ def main():
|
||||||
legal_researcher = Agent(
|
legal_researcher = Agent(
|
||||||
name="Legal Researcher",
|
name="Legal Researcher",
|
||||||
role="Legal research specialist",
|
role="Legal research specialist",
|
||||||
model=Ollama(id="llama3.1"),
|
model=Ollama(id="llama3.1:8b"),
|
||||||
knowledge=st.session_state.knowledge_base,
|
knowledge=st.session_state.knowledge_base,
|
||||||
search_knowledge=True,
|
search_knowledge=True,
|
||||||
instructions=[
|
instructions=[
|
||||||
|
|
@ -98,7 +98,7 @@ def main():
|
||||||
contract_analyst = Agent(
|
contract_analyst = Agent(
|
||||||
name="Contract Analyst",
|
name="Contract Analyst",
|
||||||
role="Contract analysis specialist",
|
role="Contract analysis specialist",
|
||||||
model=Ollama(id="llama3.1"),
|
model=Ollama(id="llama3.1:8b"),
|
||||||
knowledge=knowledge_base,
|
knowledge=knowledge_base,
|
||||||
search_knowledge=True,
|
search_knowledge=True,
|
||||||
instructions=[
|
instructions=[
|
||||||
|
|
@ -112,7 +112,7 @@ def main():
|
||||||
legal_strategist = Agent(
|
legal_strategist = Agent(
|
||||||
name="Legal Strategist",
|
name="Legal Strategist",
|
||||||
role="Legal strategy specialist",
|
role="Legal strategy specialist",
|
||||||
model=Ollama(id="llama3.1"),
|
model=Ollama(id="llama3.1:8b"),
|
||||||
knowledge=knowledge_base,
|
knowledge=knowledge_base,
|
||||||
search_knowledge=True,
|
search_knowledge=True,
|
||||||
instructions=[
|
instructions=[
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,4 @@
|
||||||
phidata==2.5.33
|
phidata==2.6.7
|
||||||
streamlit==1.40.2
|
streamlit==1.40.2
|
||||||
qdrant-client==1.12.1
|
qdrant-client==1.12.1
|
||||||
pypdf
|
ollama==0.4.4
|
||||||
python-dotenv
|
|
||||||
ollama==0.1.6
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue