Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,15 @@ jobs:

services:
mongodb:
image: bitnami/mongodb:latest
image: mongodb/mongodb-community-server
env:
MONGODB_ROOT_PASSWORD: "admin123456789"
MONGODB_USERNAME: "bridge-user"
MONGODB_PASSWORD: "admin123456789"
MONGODB_DATABASE: "bridge"
MONGO_INITDB_ROOT_PASSWORD: "admin123456789"
MONGO_INITDB_ROOT_USERNAME: "bridge-user"
MONGO_INITDB_DATABASE: "bridge"
ports:
- 27017:27017
keydb:
image: bitnami/keydb:latest
image: eqalpha/keydb:latest
env:
KEYDB_PASSWORD: "admin123456789"
ports:
Expand Down
89 changes: 89 additions & 0 deletions .http
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
### main_page

# @accept chunked

GET https://open.accelerate.science HTTP/2
Accept: text/html


### proxy

# @secret TOKEN
# @accept chunked

< {%
// Pre-request script
const crypto = require('crypto');
const nonce = crypto.randomBytes(16).toString('hex');

// Set request-scoped variables
request.variables.set('NONCE', nonce);
%}

POST https://open.accelerate.science/proxy/post HTTP/2
Content-Type: application/json
Accept: application/json
Inference-Service: postman
Authorization: Bearer {{TOKEN}}

{
"hello": "{{$uuid}}",
"previous": "{{main_page.response.body.*}}",
"world": "{{NONCE}}"
}


### MCP

POST http://open.accelerate.science/mcp/vms/proxy/8024/smol/CC%28%3DO%29Oc1ccccc1C%28%3DO%29O HTTP/2
Content-Type: application/json
Accept: application/json
Authorization: Bearer {{TOKEN}}


### Something

POST https://open.accelerate.science/proxy/service/collections/demo HTTP/2
Inference-Service: neural-pde-solvers
Authorization: Bearer {{TOKEN}}

--boundary-string
Content-Disposition: form-data; name="file"; filename="decimated_mesh.vtk"
Content-Type: application/octet-stream

< /home/dchoi/Downloads/decimated_mesh.vtk
--boundary-string--


### MCP

POST https://open.accelerate.science/mcp/ollama/api/generate HTTP/2
Content-Type: application/json
Accept: application/json
Authorization: Bearer {{TOKEN}}

{
"model": "llama3.1:8b",
"prompt": "Why is the sky blue?",
"stream": false
}

### MCP

POST https://open.accelerate.science/mcp/bioverse/v1/chat/completions HTTP/2
Content-Type: application/json
Accept: application/json
Authorization: Bearer {{TOKEN}}

{
"model": "bioverse-llm",
"messages": [
{
"role": "user",
"content": "analyze the following sequence QVQLVETGGGLVQAGGSLRLSCAASGNINSFNAMGWFRQAPGKQRELVAAITFGGRTNYADSVKGRFTISRDNTKGSVYLQMNSLKPEDTAVYYCAASENNLLTGVWHYWGRGTQVTVSS"
}
],
"temperature": 0.7,
"top_p": 0.95,
"max_tokens": 1024
}
Loading