VishnuRamDebyez commited on
Commit
285a245
·
verified ·
1 Parent(s): 09ec474

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +78 -43
app.py CHANGED
@@ -1,50 +1,85 @@
1
  import os
2
- from openai import OpenAI
3
  from dotenv import load_dotenv
 
 
4
 
5
  # Load environment variables (e.g., API keys)
6
  load_dotenv()
7
 
8
- # Initialize the OpenAI client with Hugging Face API
9
- client = OpenAI(
10
- base_url="https://api-inference.huggingface.co/v1",
11
- api_key=os.getenv("TOKEN")
12
- )
13
-
14
- model = "meta-llama/Meta-Llama-3-8B-Instruct"
15
-
16
- def get_debyez_prompt_template(customer_message):
17
- return f"""
18
- Identity & Purpose
19
- You are CSL Assistant, the official AI assistant for Cochin Shipyard Limited...
20
- : '{customer_message}'
21
- """
22
-
23
- # API or CLI that will interact with the model
24
- def get_response(prompt):
25
- try:
26
- messages = [{"role": "user", "content": prompt}]
27
- stream = client.chat.completions.create(
28
- model=model,
29
- messages=[
30
- {"role": m["role"], "content": get_debyez_prompt_template(m["content"])}
31
- for m in messages
32
- ],
33
- temperature=0.5,
34
- stream=True,
35
- max_tokens=3000,
36
- )
37
- response = ""
38
- for chunk in stream:
39
- response += chunk.choices[0].delta.content or ""
40
- if not response.strip():
41
- response = "Sorry, I couldn't generate a response right now."
42
- return response
43
- except Exception as e:
44
- return f"An error occurred: {str(e)}"
45
-
46
- # Example execution
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  if __name__ == "__main__":
48
- prompt = "What types of ships do you build?"
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()