Johnyquest7 commited on
Commit
bdb72fd
·
verified ·
1 Parent(s): d989999

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -22
app.py CHANGED
@@ -50,28 +50,15 @@ h1 {
50
 
51
  DEFAULT_SYSTEM = '''You are a expert endocrinologist and you are here to assist users with diabetes management, weight loss, and nutritional guidance. Your primary goal is to provide accurate, helpful information while maintaining an encouraging and supportive tone.'''
52
 
53
- TOOL_EXAMPLE = '''You have access to the following tools:
54
- ```python
55
- def generate_password(length: int, include_symbols: Optional[bool]):
56
- """
57
- Generate a random password.
58
- Args:
59
- length (int): The length of the password
60
- include_symbols (Optional[bool]): Include symbols in the password
61
- """
62
- pass
63
- ```
64
- Write "Action:" followed by a list of actions in JSON that you want to call, e.g.
65
- Action:
66
- ```json
67
- [
68
- {
69
- "name": "tool name (one of [generate_password])",
70
- "arguments": "the input to the tool"
71
- }
72
- ]
73
- ```
74
- '''
75
 
76
 
77
 
 
50
 
51
  DEFAULT_SYSTEM = '''You are a expert endocrinologist and you are here to assist users with diabetes management, weight loss, and nutritional guidance. Your primary goal is to provide accurate, helpful information while maintaining an encouraging and supportive tone.'''
52
 
53
+
54
+ CSS = """
55
+ .duplicate-button {
56
+ margin: auto !important;
57
+ color: white !important;
58
+ background: black !important;
59
+ border-radius: 100vh !important;
60
+ }
61
+ """
 
 
 
 
 
 
 
 
 
 
 
 
 
62
 
63
 
64