Skip to content

Commit f3ec854

Browse files
authored
Update project_code.py
1 parent 2290926 commit f3ec854

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

project_code.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
s3_client = boto3.client('s3')
1717

1818
# Initialize Cohere client
19-
COHERE_API_KEY = '2bdecd6iI83GtBV92Y6xx5BeQtUoN3eHegpc1AEv'
19+
COHERE_API_KEY = #yourkey
2020
cohere_client = cohere.Client(COHERE_API_KEY)
2121

2222
# Initialize SerpAPI key
23-
SERPAPI_API_KEY = '23675a4826deb198848dadd4ae0a3a91850d7c18ee4e3cc49dab571316cf889c'
23+
SERPAPI_API_KEY = '#yourkey'
2424

2525
# Initialize Google Vision API key
26-
VISION_API_KEY = 'AIzaSyB3SJUtcMwq69he1Jycd5mgG7Wp-51lXSg'
26+
VISION_API_KEY = '#yourapikey'
2727

2828
def describe_image(image_path):
2929
try:
@@ -272,4 +272,4 @@ def get_response():
272272
btn = tk.Button(root, text=btn_text, command=command, bg='blue', fg='white')
273273
btn.pack(pady=5, padx=10)
274274

275-
root.mainloop()
275+
root.mainloop()

0 commit comments

Comments
 (0)