sarim commited on
Commit
daaf146
·
1 Parent(s): 58ba3eb

space travel app

Browse files
Files changed (2) hide show
  1. app.py +20 -15
  2. requirements.txt +3 -1
app.py CHANGED
@@ -1,22 +1,27 @@
1
  import streamlit as st
2
- from streamlit_pdf_viewer import pdf_viewer
3
- import pdfplumber
4
- import io
5
 
6
 
7
 
8
- uploaded_files = st.file_uploader('Choose your .pdf file')
 
 
 
 
9
 
10
- if uploaded_files is not None:
11
- # To read file as bytes:
12
- bytes_data = uploaded_files.read()
13
- pdf_viewer(input=bytes_data)
14
- pdf_content = io.BytesIO(bytes_data)
15
- # with pdfplumber.open(pdf_content) as pdf_file:
16
- # for page in pdf_file.pages:
17
- # print(page.extract_text())
 
 
 
 
18
 
19
 
20
- x = st.slider('Select a value')
21
- url_1 = st.text_input(label="Enter research paper url",key="url_1")
22
- st.write(x, 'squared is', x * x)
 
1
  import streamlit as st
2
+ from pydantic_ai import Agent
3
+ from pydantic_ai.models.groq import GroqModel
 
4
 
5
 
6
 
7
+ model = GroqModel('llama-3.1-70b-versatile', api_key='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')
8
+ agent = Agent(model,system_prompt=(
9
+ "Image the year is 3045 and space travel is normal",
10
+ "Mankind has discovered aliens some are more advance then us some are not",
11
+ "You are a travel agent and depending on the budget low, medium and high you will list down some destinations",
12
 
13
+ ))
14
+
15
+ result_1 = agent.run_sync("for space travel which planet is the best")
16
+ ##The Zorvath
17
+
18
+
19
+
20
+ #print(result_1.data)
21
+
22
+ #result_2 = agent.run_sync("What are the major tourust attraction in planet The Zorvath",message_history=result_1.new_messages())
23
+
24
+ #print(result_2.data)
25
 
26
 
27
+ st.markdown(result_1.data)
 
 
requirements.txt CHANGED
@@ -1,4 +1,6 @@
1
  streamlit
2
  streamlit_pdf_reader
3
  pdfplumber
4
- streamlit_pdf_viewer
 
 
 
1
  streamlit
2
  streamlit_pdf_reader
3
  pdfplumber
4
+ streamlit_pdf_viewer
5
+ pydantic_ai
6
+ pydantic_ai.models.groq