Spaces:
Sleeping
Sleeping
formix
commited on
Commit
·
99bf49f
1
Parent(s):
3b3c5b4
app.py
CHANGED
@@ -1,15 +1,28 @@
|
|
1 |
import gradio as gr
|
2 |
import anthropic
|
3 |
from anthropic.types import ContentBlock
|
4 |
-
|
5 |
from time import time
|
6 |
-
client = anthropic.Anthropic()
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
|
|
|
|
|
|
11 |
|
12 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
# Prepare the conversation history
|
14 |
messages = []
|
15 |
for human, assistant in history:
|
@@ -26,8 +39,7 @@ def claude_conversation(message, history):
|
|
26 |
|
27 |
try:
|
28 |
# Make the API call
|
29 |
-
|
30 |
-
start = time ()
|
31 |
response = client.beta.prompt_caching.messages.create(
|
32 |
model="claude-3-5-sonnet-20240620",
|
33 |
max_tokens=1024,
|
@@ -38,30 +50,41 @@ def claude_conversation(message, history):
|
|
38 |
},
|
39 |
{
|
40 |
"type": "text",
|
41 |
-
"text": text,
|
42 |
"cache_control": {"type": "ephemeral"}
|
43 |
}
|
44 |
],
|
45 |
messages=messages
|
46 |
)
|
47 |
|
48 |
-
|
49 |
-
|
50 |
-
print (response)
|
51 |
-
|
52 |
-
end = time ()
|
53 |
print(f"Elapsed time: {end - start} seconds")
|
54 |
|
|
|
55 |
return response.content[0].text
|
56 |
except anthropic.APIError as e:
|
57 |
return f"An error occurred: {str(e)}"
|
58 |
|
59 |
# Create the Gradio interface
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
65 |
|
66 |
# Launch the app
|
67 |
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
import anthropic
|
3 |
from anthropic.types import ContentBlock
|
|
|
4 |
from time import time
|
|
|
5 |
|
6 |
+
def claude_conversation(message, history, api_key, uploaded_file):
|
7 |
+
if not api_key:
|
8 |
+
return "Please enter your Anthropic API key."
|
9 |
+
|
10 |
+
if uploaded_file is None:
|
11 |
+
return "Please upload a text document."
|
12 |
|
13 |
+
client = anthropic.Anthropic(api_key=api_key)
|
14 |
+
|
15 |
+
# Read the uploaded file content
|
16 |
+
try:
|
17 |
+
if hasattr(uploaded_file, 'read'):
|
18 |
+
text = uploaded_file.read().decode('utf-8')
|
19 |
+
else:
|
20 |
+
# If it's already a string (filename), we need to open and read the file
|
21 |
+
with open(uploaded_file, 'r') as file:
|
22 |
+
text = file.read()
|
23 |
+
except Exception as e:
|
24 |
+
return f"Error reading file: {str(e)}"
|
25 |
+
|
26 |
# Prepare the conversation history
|
27 |
messages = []
|
28 |
for human, assistant in history:
|
|
|
39 |
|
40 |
try:
|
41 |
# Make the API call
|
42 |
+
start = time()
|
|
|
43 |
response = client.beta.prompt_caching.messages.create(
|
44 |
model="claude-3-5-sonnet-20240620",
|
45 |
max_tokens=1024,
|
|
|
50 |
},
|
51 |
{
|
52 |
"type": "text",
|
53 |
+
"text": f"Document content:\n\n{text}",
|
54 |
"cache_control": {"type": "ephemeral"}
|
55 |
}
|
56 |
],
|
57 |
messages=messages
|
58 |
)
|
59 |
|
60 |
+
end = time()
|
|
|
|
|
|
|
|
|
61 |
print(f"Elapsed time: {end - start} seconds")
|
62 |
|
63 |
+
print (response)
|
64 |
return response.content[0].text
|
65 |
except anthropic.APIError as e:
|
66 |
return f"An error occurred: {str(e)}"
|
67 |
|
68 |
# Create the Gradio interface
|
69 |
+
with gr.Blocks() as demo:
|
70 |
+
gr.Markdown("# Claude Legal Document Analyzer")
|
71 |
+
gr.Markdown("Upload a legal document and ask questions about it.")
|
72 |
+
|
73 |
+
api_key_input = gr.Textbox(label="Enter your Anthropic API key", type="password")
|
74 |
+
file_upload = gr.File(label="Upload text document", file_types=[".txt"])
|
75 |
+
|
76 |
+
chatbot = gr.Chatbot()
|
77 |
+
msg = gr.Textbox()
|
78 |
+
submit_button = gr.Button("Submit")
|
79 |
+
clear = gr.ClearButton([msg, chatbot])
|
80 |
+
|
81 |
+
def respond(message, chat_history, api_key, uploaded_file):
|
82 |
+
bot_message = claude_conversation(message, chat_history, api_key, uploaded_file)
|
83 |
+
chat_history.append((message, bot_message))
|
84 |
+
return "", chat_history
|
85 |
+
|
86 |
+
submit_button.click(respond, inputs=[msg, chatbot, api_key_input, file_upload], outputs=[msg, chatbot])
|
87 |
+
msg.submit(respond, inputs=[msg, chatbot, api_key_input, file_upload], outputs=[msg, chatbot])
|
88 |
|
89 |
# Launch the app
|
90 |
demo.launch()
|