-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* FROM feature/105-configure-mysql-for-db TO development (#106) * Configured to use MySQL.. We need to make this configurable. Assess the changes for making it also work with SQLite * Works with MYSQL, was having issues stroing the base64 before * Close off traffic from everywhere * Comment out other services * Adds default user * login form uses default user * listen on 8080 * Update port in entyrpoint * Can deploy to cloudrun * Deployed to cloudrun * FROM feature/108-cicd-pipeline-tests TO development (#109) * Tests work but need to have runs happen before tests happen * All but test_retrieve_file are passing * Workflow added * update * update * minio * UPdate * update * add creds to pull image * update * env * Install dev reqs * Install dev reqs * Install dev reqs * Specify backend * Make src module * update * Add another secret * Create folder for sqlite * Fixing pipeline * Take out minio service, using s3 * Will deploy to cloud run when merged into dev * Fix ci.yml * Update deploy.yml * needs build * build is not going through * Fix deploy * Add arm platform * Updates the v2 auth * Fix build * Specify port * remove port * Forgot to remote vrom vars * update env.py * revemo setvars * revemo setvars * Try hardcode * hardcode * Updates * Stop pulling rom ini file * Major cleanUP * Believe fixes triggers * didn't like flags * Needs app_secret * uses test secret * Need Docker Creds * Messed up docker image in deploy * Changed some defaults * Should not run if changes are not in backend folder * Fix syntax * Adjusts system message * Missed one * Should run tests * Runs if changes are not in frontend * Try cache again * Test cache * Skip if cached * appears will need the cache * FROM feature/101-latest-action-show-in-dropdown TO development (#110) * init * Add SearxNG tool * Better logging and search_tool added * Clean up Tool docs * Add docs for tools * Should run test * run tests on pr * Remove frontend constraint * Should skip tool * Should tests every push * Guess it wont * Can use search tool. Added some tool handling for image formats * Fixed import statement * Add search to tools * update cicd * Login has spinner (#114) * FROM feature/113-add-spinner-to-login-button TO development (#115) * Login has spinner * few Updates * Remove memos * Made updates, should not run * Update Changelog * More paths to ignore * Forntend updates * Add docs
- Loading branch information
Showing
32 changed files
with
355 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Prompt Engineers AI - LLM Server</title> | ||
<link rel="icon" href="/assets/favicon.ico" /> | ||
<style> | ||
html, body { | ||
height: 100%; /* New: Set the height of the html and body to 100% */ | ||
margin: 0; /* New: Remove default margin */ | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f4; | ||
display: flex; /* New: Set display to flex */ | ||
justify-content: center; /* New: Center horizontally */ | ||
align-items: center; /* New: Center vertically */ | ||
} | ||
|
||
h1 { | ||
color: #333; | ||
} | ||
|
||
p { | ||
color: #666; | ||
} | ||
|
||
.container { | ||
background-color: #fff; | ||
padding: 20px; | ||
border-radius: 5px; | ||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); | ||
|
||
display: flex; /* New: Set display to flex */ | ||
flex-direction: column; /* New: Stack items vertically */ | ||
justify-content: center; /* New: Center items horizontally */ | ||
align-items: center; /* New: Center items vertically */ | ||
} | ||
|
||
.links-container { | ||
display: flex; /* Align children in a row */ | ||
justify-content: center; /* Center the links horizontally */ | ||
align-items: center; /* Align the links vertically */ | ||
gap: 10px; /* Add some space between the links */ | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
|
||
<div class="container"> | ||
<!-- <h1>👨💻 Prompt Engineers AI - LLM Server</h1> --> | ||
<img src="../assets/logo.png" /> | ||
<div class="links-container"> | ||
<a href="https://github.com/promptengineers-ai/llm-server/tree/development/docs"><img src="https://img.shields.io/badge/View%20Documentation-Docs-yellow"></a> | ||
<a href="https://promptengineersai.slack.com/ssb/redirect"><img src="https://img.shields.io/badge/Join%20our%20community-Slack-blue"></a> | ||
</div> | ||
<p style="text-align: center; margin: 10px 0px 0px 0px">This is the beta open-source API for Prompt Engineeers AI</p> | ||
<small style="text-align: center; margin: 5px 30px 30px 30px">Please contact <a href="emailto:ryaneggleston@promptengineers.ai">ryaneggleston@promptengineers.ai</a> for more questions.</small> | ||
<div class="links-container"> | ||
<a href="/docs">API</a> | ||
<a href="https://github.com/promptengineers-ai/llm-server">Github</a> | ||
<a href="https://promptengineers.ai">Saas</a> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<h1 align="center"> | ||
🤖 Prompt Engineers AI - LLM Server | ||
</h1> | ||
|
||
<p align="center"> | ||
Full LLM REST API with prompts, LLMs, Vector Databases, and Agents | ||
</p> | ||
|
||
<p align="center"> | ||
<a href="https://promptengineers-ai.gitbook.io/documentation/open-source"><img src="https://img.shields.io/badge/View%20Documentation-Docs-yellow"></a> | ||
<a href="https://join.slack.com/t/promptengineersai/shared_invite/zt-21upjsftv-gX~gNjTCU~2HfbeM_ZwTEQ"><img src="https://img.shields.io/badge/Join%20our%20community-Slack-blue"></a> | ||
</p> | ||
|
||
<p align="center"> | ||
<img src="https://github.com/promptengineers-ai/llm-server/blob/master/docs/assets/llm-server.gif?raw=true" width="600px" /> | ||
</p> | ||
|
||
|
||
### Table of Contents | ||
- [Tools](https://github.com/promptengineers-ai/llm-server/blob/master/docs/tools) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<h1 align="center"> | ||
🛠️ Tools | ||
</h1> | ||
|
||
### Table of Contents | ||
|
||
- Advanced | ||
- [SearxNG Search](https://github.com/promptengineers-ai/llm-server/blob/master/docs/advanced/searxng_search.md) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.