Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
john-s4d committed Feb 7, 2025
2 parents 036a1d3 + f682d7d commit 292f650
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"postman.settings.dotenv-detection-notification-visibility": false
}
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
plugin_path = os.path.abspath(os.path.join(os.path.dirname(__file__), 'llm_integration/langchain_plugins'))
sys.path.append(plugin_path)

llm = ChatOpenAI(model_name="gpt-3.5-turbo", api_key=api_key)
llm = ChatOpenAI(model_name="gpt-4o-mini", api_key=api_key)

# Load coin names from JSON file
with open('coin_names.json', 'r') as file:
Expand Down
1 change: 1 addition & 0 deletions static/huhCSS.css
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ canvas {
.logo-text {
font-size: 28px;
margin: 0;
font-family: "Sora", serif;
/* Remove default h1 margin */
}

Expand Down
27 changes: 27 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,36 @@
overflow-y: auto;
margin: 10px 0;
display: none;
scrollbar-width: thin;
scroll-behavior: smooth;
/* Firefox */
scrollbar-color: gray transparent;
/* Firefox */
/* Initially hidden */
}

.chatbox .messages::-webkit-scrollbar {
height: 5px;
/* Thin scrollbar */
}

.chatbox .messages::-webkit-scrollbar-track {
background: transparent;
/* Invisible track */
}

.chatbox .messages::-webkit-scrollbar-thumb {
background: gray;
border-radius: 10px;
/* Rounded edges */
}

.chatbox .messages::-webkit-scrollbar-thumb:hover {
background: darkgray;
/* Slightly darker on hover */
}


.chatbox .message {
margin-bottom: 15px;
padding: 10px;
Expand Down

0 comments on commit 292f650

Please sign in to comment.