Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,50 +1,85 @@
|
|
1 |
import os
|
2 |
-
|
3 |
from dotenv import load_dotenv
|
|
|
|
|
4 |
|
5 |
# Load environment variables (e.g., API keys)
|
6 |
load_dotenv()
|
7 |
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
if __name__ == "__main__":
|
48 |
-
|
49 |
-
response = get_response(prompt)
|
50 |
-
print(response)
|
|
|
1 |
import os
|
2 |
+
import requests
|
3 |
from dotenv import load_dotenv
|
4 |
+
from typing import List, Dict
|
5 |
+
import json
|
6 |
|
7 |
# Load environment variables (e.g., API keys)
|
8 |
load_dotenv()
|
9 |
|
10 |
+
class CSLAssistant:
|
11 |
+
def __init__(self):
|
12 |
+
self.api_token = os.getenv("TOKEN")
|
13 |
+
self.api_url = "https://api-inference.huggingface.co/models/meta-llama/Meta-Llama-3-8B-Instruct"
|
14 |
+
self.headers = {"Authorization": f"Bearer {self.api_token}"}
|
15 |
+
|
16 |
+
def get_system_prompt(self) -> str:
|
17 |
+
return """
|
18 |
+
Identity & Purpose:
|
19 |
+
You are CSL Assistant, the official AI assistant for Cochin Shipyard Limited.
|
20 |
+
You specialize in providing information about shipbuilding, marine engineering,
|
21 |
+
and Cochin Shipyard's capabilities and services.
|
22 |
+
|
23 |
+
Guidelines:
|
24 |
+
1. Provide accurate information about CSL's shipbuilding capabilities
|
25 |
+
2. Be professional and courteous in all interactions
|
26 |
+
3. If unsure about specific details, acknowledge limitations
|
27 |
+
4. Focus on publicly available information about CSL
|
28 |
+
"""
|
29 |
+
|
30 |
+
def get_prompt_template(self, customer_message: str) -> str:
|
31 |
+
return f"{self.get_system_prompt()}\n\nCustomer Query: {customer_message}"
|
32 |
+
|
33 |
+
def get_response(self, prompt: str) -> str:
|
34 |
+
try:
|
35 |
+
# Prepare the payload
|
36 |
+
payload = {
|
37 |
+
"inputs": self.get_prompt_template(prompt),
|
38 |
+
"parameters": {
|
39 |
+
"max_new_tokens": 3000,
|
40 |
+
"temperature": 0.5,
|
41 |
+
"return_full_text": False
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
# Make the API request
|
46 |
+
response = requests.post(
|
47 |
+
self.api_url,
|
48 |
+
headers=self.headers,
|
49 |
+
json=payload
|
50 |
+
)
|
51 |
+
|
52 |
+
# Check if the request was successful
|
53 |
+
response.raise_for_status()
|
54 |
+
|
55 |
+
# Parse the response
|
56 |
+
result = response.json()
|
57 |
+
|
58 |
+
if isinstance(result, list) and len(result) > 0:
|
59 |
+
return result[0].get('generated_text', '').strip()
|
60 |
+
|
61 |
+
return "Sorry, I couldn't generate a response right now."
|
62 |
+
|
63 |
+
except requests.exceptions.RequestException as e:
|
64 |
+
return f"API Request Error: {str(e)}"
|
65 |
+
except json.JSONDecodeError:
|
66 |
+
return "Error: Invalid response from the API"
|
67 |
+
except Exception as e:
|
68 |
+
return f"An unexpected error occurred: {str(e)}"
|
69 |
+
|
70 |
+
def main():
|
71 |
+
assistant = CSLAssistant()
|
72 |
+
|
73 |
+
# Example queries
|
74 |
+
test_queries = [
|
75 |
+
"What types of ships do you build?",
|
76 |
+
"What is your shipyard's capacity?",
|
77 |
+
"Tell me about your recent projects"
|
78 |
+
]
|
79 |
+
|
80 |
+
for query in test_queries:
|
81 |
+
print(f"\nQuery: {query}")
|
82 |
+
print("Response:", assistant.get_response(query))
|
83 |
+
|
84 |
if __name__ == "__main__":
|
85 |
+
main()
|
|
|
|