Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 84acc429d7 |
+42
-92
@@ -8,9 +8,6 @@
|
|||||||
# Use production mode unless you are developing locally.
|
# Use production mode unless you are developing locally.
|
||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
|
|
||||||
# Detail level of diagnostic logging. (trace | debug | info | warn | error)
|
|
||||||
# LOG_LEVEL=info
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# General settings:
|
# General settings:
|
||||||
|
|
||||||
@@ -27,91 +24,55 @@ NODE_ENV=production
|
|||||||
|
|
||||||
# Max number of context tokens a user can request at once.
|
# Max number of context tokens a user can request at once.
|
||||||
# Increase this if your proxy allow GPT 32k or 128k context
|
# Increase this if your proxy allow GPT 32k or 128k context
|
||||||
# MAX_CONTEXT_TOKENS_OPENAI=32768
|
# MAX_CONTEXT_TOKENS_OPENAI=16384
|
||||||
# MAX_CONTEXT_TOKENS_ANTHROPIC=32768
|
|
||||||
|
|
||||||
# Max number of output tokens a user can request at once.
|
# Max number of output tokens a user can request at once.
|
||||||
# MAX_OUTPUT_TOKENS_OPENAI=1024
|
# MAX_OUTPUT_TOKENS_OPENAI=400
|
||||||
# MAX_OUTPUT_TOKENS_ANTHROPIC=1024
|
# MAX_OUTPUT_TOKENS_ANTHROPIC=400
|
||||||
|
|
||||||
# Whether to show the estimated cost of consumed tokens on the info page.
|
# Whether to show the estimated cost of consumed tokens on the info page.
|
||||||
# SHOW_TOKEN_COSTS=false
|
# SHOW_TOKEN_COSTS=false
|
||||||
|
|
||||||
# Whether to automatically check API keys for validity.
|
# Whether to automatically check API keys for validity.
|
||||||
# Disabled by default in local development mode, but enabled in production.
|
# Note: CHECK_KEYS is disabled by default in local development mode, but enabled
|
||||||
|
# by default in production mode.
|
||||||
# CHECK_KEYS=true
|
# CHECK_KEYS=true
|
||||||
|
|
||||||
# Which model types users are allowed to access.
|
# Which model types users are allowed to access.
|
||||||
# The following model families are recognized:
|
# The following model families are recognized:
|
||||||
# turbo | gpt4 | gpt4-32k | gpt4-turbo | gpt4o | o1 | dall-e | claude
|
# turbo | gpt4 | gpt4-32k | gpt4-turbo | dall-e | claude | claude-opus | gemini-pro | mistral-tiny | mistral-small | mistral-medium | mistral-large | aws-claude | azure-turbo | azure-gpt4 | azure-gpt4-32k | azure-gpt4-turbo | azure-dall-e
|
||||||
# | claude-opus | gemini-flash | gemini-pro | gemini-ultra | mistral-tiny |
|
# By default, all models are allowed except for 'dall-e' / 'azure-dall-e'.
|
||||||
# | mistral-small | mistral-medium | mistral-large | aws-claude |
|
|
||||||
# | aws-claude-opus | gcp-claude | gcp-claude-opus | azure-turbo | azure-gpt4
|
|
||||||
# | azure-gpt4-32k | azure-gpt4-turbo | azure-gpt4o | azure-o1 | azure-dall-e
|
|
||||||
|
|
||||||
# By default, all models are allowed except for dall-e and o1.
|
|
||||||
# To allow DALL-E image generation, uncomment the line below and add 'dall-e' or
|
# To allow DALL-E image generation, uncomment the line below and add 'dall-e' or
|
||||||
# 'azure-dall-e' to the list of allowed model families.
|
# 'azure-dall-e' to the list of allowed model families.
|
||||||
# ALLOWED_MODEL_FAMILIES=turbo,gpt4,gpt4-32k,gpt4-turbo,gpt4o,claude,claude-opus,gemini-flash,gemini-pro,gemini-ultra,mistral-tiny,mistral-small,mistral-medium,mistral-large,aws-claude,aws-claude-opus,gcp-claude,gcp-claude-opus,azure-turbo,azure-gpt4,azure-gpt4-32k,azure-gpt4-turbo,azure-gpt4o
|
# ALLOWED_MODEL_FAMILIES=turbo,gpt4,gpt4-32k,gpt4-turbo,claude,claude-opus,gemini-pro,mistral-tiny,mistral-small,mistral-medium,mistral-large,aws-claude,azure-turbo,azure-gpt4,azure-gpt4-32k,azure-gpt4-turbo
|
||||||
|
|
||||||
# Which services can be used to process prompts containing images via multimodal
|
|
||||||
# models. The following services are recognized:
|
|
||||||
# openai | anthropic | aws | gcp | azure | google-ai | mistral-ai
|
|
||||||
# Do not enable this feature unless all users are trusted, as you will be liable
|
|
||||||
# for any user-submitted images containing illegal content.
|
|
||||||
# By default, no image services are allowed and image prompts are rejected.
|
|
||||||
# ALLOWED_VISION_SERVICES=
|
|
||||||
|
|
||||||
# Whether prompts should be logged to Google Sheets.
|
|
||||||
# Requires additional setup. See `docs/google-sheets.md` for more information.
|
|
||||||
# PROMPT_LOGGING=false
|
|
||||||
|
|
||||||
# Specifies the number of proxies or load balancers in front of the server.
|
|
||||||
# For Cloudflare or Hugging Face deployments, the default of 1 is correct.
|
|
||||||
# For any other deployments, please see config.ts as the correct configuration
|
|
||||||
# depends on your setup. Misconfiguring this value can result in problems
|
|
||||||
# accurately tracking IP addresses and enforcing rate limits.
|
|
||||||
# TRUSTED_PROXIES=1
|
|
||||||
|
|
||||||
# Whether cookies should be set without the Secure flag, for hosts that don't
|
|
||||||
# support SSL. True by default in development, false in production.
|
|
||||||
# USE_INSECURE_COOKIES=false
|
|
||||||
|
|
||||||
# Reorganizes requests in the queue according to their token count, placing
|
|
||||||
# larger prompts further back. The penalty is determined by (promptTokens *
|
|
||||||
# TOKENS_PUNISHMENT_FACTOR). A value of 1.0 adds one second per 1000 tokens.
|
|
||||||
# When there is no queue or it is very short, the effect is negligible (this
|
|
||||||
# setting only reorders the queue, it does not artificially delay requests).
|
|
||||||
# TOKENS_PUNISHMENT_FACTOR=0.0
|
|
||||||
|
|
||||||
# Captcha verification settings. Refer to docs/pow-captcha.md for guidance.
|
|
||||||
# CAPTCHA_MODE=none
|
|
||||||
# POW_TOKEN_HOURS=24
|
|
||||||
# POW_TOKEN_MAX_IPS=2
|
|
||||||
# POW_DIFFICULTY_LEVEL=low
|
|
||||||
# POW_CHALLENGE_TIMEOUT=30
|
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------
|
|
||||||
# Blocking settings:
|
|
||||||
# Allows blocking requests depending on content, referers, or IP addresses.
|
|
||||||
# This is a convenience feature; if you need more robust functionality it is
|
|
||||||
# highly recommended to put this application behind nginx or Cloudflare, as they
|
|
||||||
# will have better performance.
|
|
||||||
|
|
||||||
# IP addresses or CIDR blocks from which requests will be blocked.
|
|
||||||
# IP_BLACKLIST=10.0.0.1/24
|
|
||||||
# URLs from which requests will be blocked.
|
# URLs from which requests will be blocked.
|
||||||
# BLOCKED_ORIGINS=reddit.com,9gag.com
|
# BLOCKED_ORIGINS=reddit.com,9gag.com
|
||||||
# Message to show when requests are blocked.
|
# Message to show when requests are blocked.
|
||||||
# BLOCK_MESSAGE="You must be over the age of majority in your country to use this service."
|
# BLOCK_MESSAGE="You must be over the age of majority in your country to use this service."
|
||||||
# Destination to redirect blocked requests to.
|
# Destination to redirect blocked requests to.
|
||||||
# BLOCK_REDIRECT="https://roblox.com/"
|
# BLOCK_REDIRECT="https://roblox.com/"
|
||||||
# Comma-separated list of phrases that will be rejected. Surround phrases with
|
|
||||||
# quotes if they contain commas. You can use regular expression tokens.
|
# Comma-separated list of phrases that will be rejected. Only whole words are matched.
|
||||||
# Avoid overly broad phrases as will trigger on any match in the entire prompt.
|
# Surround phrases with quotes if they contain commas.
|
||||||
|
# Avoid short or common phrases as this tests the entire prompt.
|
||||||
# REJECT_PHRASES="phrase one,phrase two,"phrase three, which has a comma",phrase four"
|
# REJECT_PHRASES="phrase one,phrase two,"phrase three, which has a comma",phrase four"
|
||||||
# Message to show when requests are rejected.
|
# Message to show when requests are rejected.
|
||||||
# REJECT_MESSAGE="You can't say that here."
|
# REJECT_MESSAGE="This content violates /aicg/'s acceptable use policy."
|
||||||
|
|
||||||
|
# Whether prompts should be logged to Google Sheets.
|
||||||
|
# Requires additional setup. See `docs/google-sheets.md` for more information.
|
||||||
|
# PROMPT_LOGGING=false
|
||||||
|
|
||||||
|
# The port and network interface to listen on.
|
||||||
|
# PORT=7860
|
||||||
|
# BIND_ADDRESS=0.0.0.0
|
||||||
|
|
||||||
|
# Whether cookies should be set without the Secure flag, for hosts that don't support SSL.
|
||||||
|
# USE_INSECURE_COOKIES=false
|
||||||
|
|
||||||
|
# Detail level of logging. (trace | debug | info | warn | error)
|
||||||
|
# LOG_LEVEL=info
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Optional settings for user management, access control, and quota enforcement:
|
# Optional settings for user management, access control, and quota enforcement:
|
||||||
@@ -132,34 +93,29 @@ NODE_ENV=production
|
|||||||
# ALLOW_NICKNAME_CHANGES=true
|
# ALLOW_NICKNAME_CHANGES=true
|
||||||
|
|
||||||
# Default token quotas for each model family. (0 for unlimited)
|
# Default token quotas for each model family. (0 for unlimited)
|
||||||
# Specify as TOKEN_QUOTA_MODEL_FAMILY=value (replacing dashes with underscores).
|
# DALL-E "tokens" are counted at a rate of 100000 tokens per US$1.00 generated,
|
||||||
# eg. TOKEN_QUOTA_TURBO=0, TOKEN_QUOTA_GPT4=1000000, TOKEN_QUOTA_GPT4_32K=100000
|
# which is similar to the cost of GPT-4 Turbo.
|
||||||
# "Tokens" for image-generation models are counted at a rate of 100000 tokens
|
|
||||||
# per US$1.00 generated, which is similar to the cost of GPT-4 Turbo.
|
|
||||||
# DALL-E 3 costs around US$0.10 per image (10000 tokens).
|
# DALL-E 3 costs around US$0.10 per image (10000 tokens).
|
||||||
# See `docs/dall-e-configuration.md` for more information.
|
# See `docs/dall-e-configuration.md` for more information.
|
||||||
|
# TOKEN_QUOTA_TURBO=0
|
||||||
|
# TOKEN_QUOTA_GPT4=0
|
||||||
|
# TOKEN_QUOTA_GPT4_32K=0
|
||||||
|
# TOKEN_QUOTA_GPT4_TURBO=0
|
||||||
# TOKEN_QUOTA_DALL_E=0
|
# TOKEN_QUOTA_DALL_E=0
|
||||||
|
# TOKEN_QUOTA_CLAUDE=0
|
||||||
|
# TOKEN_QUOTA_GEMINI_PRO=0
|
||||||
|
# TOKEN_QUOTA_AWS_CLAUDE=0
|
||||||
|
|
||||||
# How often to refresh token quotas. (hourly | daily)
|
# How often to refresh token quotas. (hourly | daily)
|
||||||
# Leave unset to never automatically refresh quotas.
|
# Leave unset to never automatically refresh quotas.
|
||||||
# QUOTA_REFRESH_PERIOD=daily
|
# QUOTA_REFRESH_PERIOD=daily
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------
|
# Specifies the number of proxies or load balancers in front of the server.
|
||||||
# HTTP agent settings:
|
# For Cloudflare or Hugging Face deployments, the default of 1 is correct.
|
||||||
# If you need to change how the proxy makes requests to other servers, such
|
# For any other deployments, please see config.ts as the correct configuration
|
||||||
# as when checking keys or forwarding users' requests to external services,
|
# depends on your setup. Misconfiguring this value can result in problems
|
||||||
# you can configure an alternative HTTP agent. Otherwise the default OS settings
|
# accurately tracking IP addresses and enforcing rate limits.
|
||||||
# will be used.
|
# TRUSTED_PROXIES=1
|
||||||
|
|
||||||
# The name of the network interface to use. The first external IPv4 address
|
|
||||||
# belonging to this interface will be used for outgoing requests.
|
|
||||||
# HTTP_AGENT_INTERFACE=enp0s3
|
|
||||||
|
|
||||||
# The URL of a proxy server to use. Supports SOCKS4, SOCKS5, HTTP, and HTTPS.
|
|
||||||
# Note that if your proxy server issues a self-signed certificate, you may need
|
|
||||||
# NODE_EXTRA_CA_CERTS set to the path to your certificate. You will need to set
|
|
||||||
# that variable in your environment, not in this file.
|
|
||||||
# HTTP_AGENT_PROXY_URL=http://test:test@127.0.0.1:8000
|
|
||||||
|
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Secrets and keys:
|
# Secrets and keys:
|
||||||
@@ -168,24 +124,18 @@ NODE_ENV=production
|
|||||||
|
|
||||||
# You can add multiple API keys by separating them with a comma.
|
# You can add multiple API keys by separating them with a comma.
|
||||||
# For AWS credentials, separate the access key ID, secret key, and region with a colon.
|
# For AWS credentials, separate the access key ID, secret key, and region with a colon.
|
||||||
# For GCP credentials, separate the project ID, client email, region, and private key with a colon.
|
|
||||||
OPENAI_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
OPENAI_KEY=sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
ANTHROPIC_KEY=sk-ant-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
ANTHROPIC_KEY=sk-ant-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
GOOGLE_AI_KEY=AIzaxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
||||||
# See `docs/aws-configuration.md` for more information, there may be additional steps required to set up AWS.
|
# See `docs/aws-configuration.md` for more information, there may be additional steps required to set up AWS.
|
||||||
AWS_CREDENTIALS=myaccesskeyid:mysecretkey:us-east-1,anotheraccesskeyid:anothersecretkey:us-west-2
|
AWS_CREDENTIALS=myaccesskeyid:mysecretkey:us-east-1,anotheraccesskeyid:anothersecretkey:us-west-2
|
||||||
# See `docs/azure-configuration.md` for more information, there may be additional steps required to set up Azure.
|
# See `docs/azure-configuration.md` for more information, there may be additional steps required to set up Azure.
|
||||||
AZURE_CREDENTIALS=azure-resource-name:deployment-id:api-key,another-azure-resource-name:another-deployment-id:another-api-key
|
AZURE_CREDENTIALS=azure-resource-name:deployment-id:api-key,another-azure-resource-name:another-deployment-id:another-api-key
|
||||||
GCP_CREDENTIALS=project-id:client-email:region:private-key
|
|
||||||
|
|
||||||
# With proxy_key gatekeeper, the password users must provide to access the API.
|
# With proxy_key gatekeeper, the password users must provide to access the API.
|
||||||
# PROXY_KEY=your-secret-key
|
# PROXY_KEY=your-secret-key
|
||||||
|
|
||||||
# With user_token gatekeeper, the admin password used to manage users.
|
# With user_token gatekeeper, the admin password used to manage users.
|
||||||
# ADMIN_KEY=your-very-secret-key
|
# ADMIN_KEY=your-very-secret-key
|
||||||
# Restrict access to the admin interface to specific IP addresses, specified
|
|
||||||
# as a comma-separated list of CIDR ranges.
|
|
||||||
# ADMIN_WHITELIST=0.0.0.0/0
|
|
||||||
|
|
||||||
# With firebase_rtdb gatekeeper storage, the Firebase project credentials.
|
# With firebase_rtdb gatekeeper storage, the Firebase project credentials.
|
||||||
# FIREBASE_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
# FIREBASE_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
||||||
|
|||||||
+4
-3
@@ -1,10 +1,11 @@
|
|||||||
{
|
{
|
||||||
"plugins": ["prettier-plugin-ejs"],
|
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
"files": "*.ejs",
|
"files": [
|
||||||
|
"*.ejs"
|
||||||
|
],
|
||||||
"options": {
|
"options": {
|
||||||
"printWidth": 120,
|
"printWidth": 160,
|
||||||
"bracketSameLine": true
|
"bracketSameLine": true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,16 @@
|
|||||||
# OAI Reverse Proxy
|
# OAI Reverse Proxy
|
||||||
|
|
||||||
Reverse proxy server for various LLM APIs.
|
Reverse proxy server for various LLM APIs.
|
||||||
|
|
||||||
### Table of Contents
|
### Table of Contents
|
||||||
<!-- TOC -->
|
- [What is this?](#what-is-this)
|
||||||
* [OAI Reverse Proxy](#oai-reverse-proxy)
|
- [Features](#features)
|
||||||
* [Table of Contents](#table-of-contents)
|
- [Usage Instructions](#usage-instructions)
|
||||||
* [What is this?](#what-is-this)
|
- [Self-hosting](#self-hosting)
|
||||||
* [Features](#features)
|
- [Alternatives](#alternatives)
|
||||||
* [Usage Instructions](#usage-instructions)
|
- [Huggingface (outdated, not advised)](#huggingface-outdated-not-advised)
|
||||||
* [Personal Use (single-user)](#personal-use-single-user)
|
- [Render (outdated, not advised)](#render-outdated-not-advised)
|
||||||
* [Updating](#updating)
|
- [Local Development](#local-development)
|
||||||
* [Local Development](#local-development)
|
|
||||||
* [Self-hosting](#self-hosting)
|
|
||||||
* [Building](#building)
|
|
||||||
* [Forking](#forking)
|
|
||||||
<!-- TOC -->
|
|
||||||
|
|
||||||
## What is this?
|
## What is this?
|
||||||
This project allows you to run a reverse proxy server for various LLM APIs.
|
This project allows you to run a reverse proxy server for various LLM APIs.
|
||||||
@@ -24,7 +20,6 @@ This project allows you to run a reverse proxy server for various LLM APIs.
|
|||||||
- [x] [OpenAI](https://openai.com/)
|
- [x] [OpenAI](https://openai.com/)
|
||||||
- [x] [Anthropic](https://www.anthropic.com/)
|
- [x] [Anthropic](https://www.anthropic.com/)
|
||||||
- [x] [AWS Bedrock](https://aws.amazon.com/bedrock/)
|
- [x] [AWS Bedrock](https://aws.amazon.com/bedrock/)
|
||||||
- [x] [Vertex AI (GCP)](https://cloud.google.com/vertex-ai/)
|
|
||||||
- [x] [Google MakerSuite/Gemini API](https://ai.google.dev/)
|
- [x] [Google MakerSuite/Gemini API](https://ai.google.dev/)
|
||||||
- [x] [Azure OpenAI](https://azure.microsoft.com/en-us/products/ai-services/openai-service)
|
- [x] [Azure OpenAI](https://azure.microsoft.com/en-us/products/ai-services/openai-service)
|
||||||
- [x] Translation from OpenAI-formatted prompts to any other API, including streaming responses
|
- [x] Translation from OpenAI-formatted prompts to any other API, including streaming responses
|
||||||
@@ -33,40 +28,43 @@ This project allows you to run a reverse proxy server for various LLM APIs.
|
|||||||
- [x] Simple role-based permissions
|
- [x] Simple role-based permissions
|
||||||
- [x] Per-model token quotas
|
- [x] Per-model token quotas
|
||||||
- [x] Temporary user accounts
|
- [x] Temporary user accounts
|
||||||
- [x] Event audit logging
|
- [x] Prompt and completion logging
|
||||||
- [x] Optional full logging of prompts and completions
|
|
||||||
- [x] Abuse detection and prevention
|
- [x] Abuse detection and prevention
|
||||||
- [x] IP address and user token model invocation rate limits
|
|
||||||
- [x] IP blacklists
|
---
|
||||||
- [x] Proof-of-work challenge for access by anonymous users
|
|
||||||
|
|
||||||
## Usage Instructions
|
## Usage Instructions
|
||||||
If you'd like to run your own instance of this server, you'll need to deploy it somewhere and configure it with your API keys. A few easy options are provided below, though you can also deploy it to any other service you'd like if you know what you're doing and the service supports Node.js.
|
If you'd like to run your own instance of this server, you'll need to deploy it somewhere and configure it with your API keys. A few easy options are provided below, though you can also deploy it to any other service you'd like if you know what you're doing and the service supports Node.js.
|
||||||
|
|
||||||
### Personal Use (single-user)
|
|
||||||
If you just want to run the proxy server to use yourself without hosting it for others:
|
|
||||||
1. Install [Node.js](https://nodejs.org/en/download/) >= 18.0.0
|
|
||||||
2. Clone this repository
|
|
||||||
3. Create a `.env` file in the root of the project and add your API keys. See the [.env.example](./.env.example) file for an example.
|
|
||||||
4. Install dependencies with `npm install`
|
|
||||||
5. Run `npm run build`
|
|
||||||
6. Run `npm start`
|
|
||||||
|
|
||||||
#### Updating
|
|
||||||
You must re-run `npm install` and `npm run build` whenever you pull new changes from the repository.
|
|
||||||
|
|
||||||
#### Local Development
|
|
||||||
Use `npm run start:dev` to run the proxy in development mode with watch mode enabled. Use `npm run type-check` to run the type checker across the project.
|
|
||||||
|
|
||||||
### Self-hosting
|
### Self-hosting
|
||||||
[See here for instructions on how to self-host the application on your own VPS or local machine and expose it to the internet for others to use.](./docs/self-hosting.md)
|
[See here for instructions on how to self-host the application on your own VPS or local machine.](./docs/self-hosting.md)
|
||||||
|
|
||||||
**Ensure you set the `TRUSTED_PROXIES` environment variable according to your deployment.** Refer to [.env.example](./.env.example) and [config.ts](./src/config.ts) for more information.
|
**Ensure you set the `TRUSTED_PROXIES` environment variable according to your deployment.** Refer to [.env.example](./.env.example) and [config.ts](./src/config.ts) for more information.
|
||||||
|
|
||||||
|
### Alternatives
|
||||||
|
Fiz and Sekrit are working on some alternative ways to deploy this conveniently. While I'm not involved in this effort beyond providing technical advice regarding my code, I'll link to their work here for convenience: [Sekrit's rentry](https://rentry.org/sekrit)
|
||||||
|
|
||||||
|
### Huggingface (outdated, not advised)
|
||||||
|
[See here for instructions on how to deploy to a Huggingface Space.](./docs/deploy-huggingface.md)
|
||||||
|
|
||||||
|
### Render (outdated, not advised)
|
||||||
|
[See here for instructions on how to deploy to Render.com.](./docs/deploy-render.md)
|
||||||
|
|
||||||
|
## Local Development
|
||||||
|
To run the proxy locally for development or testing, install Node.js >= 18.0.0 and follow the steps below.
|
||||||
|
|
||||||
|
1. Clone the repo
|
||||||
|
2. Install dependencies with `npm install`
|
||||||
|
3. Create a `.env` file in the root of the project and add your API keys. See the [.env.example](./.env.example) file for an example.
|
||||||
|
4. Start the server in development mode with `npm run start:dev`.
|
||||||
|
|
||||||
|
You can also use `npm run start:dev:tsc` to enable project-wide type checking at the cost of slower startup times. `npm run type-check` can be used to run type checking without starting the server.
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
To build the project, run `npm run build`. This will compile the TypeScript code to JavaScript and output it to the `build` directory. You should run this whenever you pull new changes from the repository.
|
To build the project, run `npm run build`. This will compile the TypeScript code to JavaScript and output it to the `build` directory.
|
||||||
|
|
||||||
Note that if you are trying to build the server on a very memory-constrained (<= 1GB) VPS, you may need to run the build with `NODE_OPTIONS=--max_old_space_size=2048 npm run build` to avoid running out of memory during the build process, assuming you have swap enabled. The application itself should run fine on a 512MB VPS for most reasonable traffic levels.
|
Note that if you are trying to build the server on a very memory-constrained (<= 1GB) VPS, you may need to run the build with `NODE_OPTIONS=--max_old_space_size=2048 npm run build` to avoid running out of memory during the build process, assuming you have swap enabled. The application itself should run fine on a 512MB VPS for most reasonable traffic levels.
|
||||||
|
|
||||||
## Forking
|
## Forking
|
||||||
|
|
||||||
If you are forking the repository on GitGud, you may wish to disable GitLab CI/CD or you will be spammed with emails about failed builds due not having any CI runners. You can do this by going to *Settings > General > Visibility, project features, permissions* and then disabling the "CI/CD" feature.
|
If you are forking the repository on GitGud, you may wish to disable GitLab CI/CD or you will be spammed with emails about failed builds due not having any CI runners. You can do this by going to *Settings > General > Visibility, project features, permissions* and then disabling the "CI/CD" feature.
|
||||||
|
|||||||
@@ -17,8 +17,9 @@ ARG GREETING_URL
|
|||||||
RUN if [ -n "$GREETING_URL" ]; then \
|
RUN if [ -n "$GREETING_URL" ]; then \
|
||||||
curl -sL "$GREETING_URL" > greeting.md; \
|
curl -sL "$GREETING_URL" > greeting.md; \
|
||||||
fi
|
fi
|
||||||
COPY . .
|
COPY package*.json greeting.md* ./
|
||||||
RUN npm install
|
RUN npm install
|
||||||
|
COPY . .
|
||||||
RUN npm run build
|
RUN npm run build
|
||||||
RUN --mount=type=secret,id=_env,dst=/etc/secrets/.env cat /etc/secrets/.env >> .env
|
RUN --mount=type=secret,id=_env,dst=/etc/secrets/.env cat /etc/secrets/.env >> .env
|
||||||
EXPOSE 10000
|
EXPOSE 10000
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Deploy to Render.com
|
# Deploy to Render.com
|
||||||
|
|
||||||
**⚠️ This method is no longer supported or recommended and may not work. Please use the [self-hosting instructions](./self-hosting.md) instead.**
|
**⚠️ This method is no longer recommended. Please use the [self-hosting instructions](./self-hosting.md) instead.**
|
||||||
|
|
||||||
Render.com offers a free tier that includes 750 hours of compute time per month. This is enough to run a single proxy instance 24/7. Instances shut down after 15 minutes without traffic but start up again automatically when a request is received. You can use something like https://app.checklyhq.com/ to ping your proxy every 15 minutes to keep it alive.
|
Render.com offers a free tier that includes 750 hours of compute time per month. This is enough to run a single proxy instance 24/7. Instances shut down after 15 minutes without traffic but start up again automatically when a request is received. You can use something like https://app.checklyhq.com/ to ping your proxy every 15 minutes to keep it alive.
|
||||||
|
|
||||||
|
|||||||
@@ -1,35 +0,0 @@
|
|||||||
# Configuring the proxy for Vertex AI (GCP)
|
|
||||||
|
|
||||||
The proxy supports GCP models via the `/proxy/gcp/claude` endpoint. There are a few extra steps necessary to use GCP compared to the other supported APIs.
|
|
||||||
|
|
||||||
- [Setting keys](#setting-keys)
|
|
||||||
- [Setup Vertex AI](#setup-vertex-ai)
|
|
||||||
- [Supported model IDs](#supported-model-ids)
|
|
||||||
|
|
||||||
## Setting keys
|
|
||||||
|
|
||||||
Use the `GCP_CREDENTIALS` environment variable to set the GCP API keys.
|
|
||||||
|
|
||||||
Like other APIs, you can provide multiple keys separated by commas. Each GCP key, however, is a set of credentials including the project id, client email, region and private key. These are separated by a colon (`:`).
|
|
||||||
|
|
||||||
For example:
|
|
||||||
|
|
||||||
```
|
|
||||||
GCP_CREDENTIALS=my-first-project:xxx@yyy.com:us-east5:-----BEGIN PRIVATE KEY-----xxx-----END PRIVATE KEY-----,my-first-project2:xxx2@yyy.com:us-east5:-----BEGIN PRIVATE KEY-----xxx-----END PRIVATE KEY-----
|
|
||||||
```
|
|
||||||
|
|
||||||
## Setup Vertex AI
|
|
||||||
1. Go to [https://cloud.google.com/vertex-ai](https://cloud.google.com/vertex-ai) and sign up for a GCP account. ($150 free credits without credit card or $300 free credits with credit card, credits expire in 90 days)
|
|
||||||
2. Go to [https://console.cloud.google.com/marketplace/product/google/aiplatform.googleapis.com](https://console.cloud.google.com/marketplace/product/google/aiplatform.googleapis.com) to enable Vertex AI API.
|
|
||||||
3. Go to [https://console.cloud.google.com/vertex-ai](https://console.cloud.google.com/vertex-ai) and navigate to Model Garden to apply for access to the Claude models.
|
|
||||||
4. Create a [Service Account](https://console.cloud.google.com/projectselector/iam-admin/serviceaccounts/create?walkthrough_id=iam--create-service-account#step_index=1) , and make sure to grant the role of "Vertex AI User" or "Vertex AI Administrator".
|
|
||||||
5. On the service account page you just created, create a new key and select "JSON". The JSON file will be downloaded automatically.
|
|
||||||
6. The required credential is in the JSON file you just downloaded.
|
|
||||||
|
|
||||||
## Supported model IDs
|
|
||||||
Users can send these model IDs to the proxy to invoke the corresponding models.
|
|
||||||
- **Claude**
|
|
||||||
- `claude-3-haiku@20240307`
|
|
||||||
- `claude-3-sonnet@20240229`
|
|
||||||
- `claude-3-opus@20240229`
|
|
||||||
- `claude-3-5-sonnet@20240620`
|
|
||||||
@@ -1,135 +0,0 @@
|
|||||||
# Proof-of-work Verification
|
|
||||||
|
|
||||||
You can require users to complete a proof-of-work before they can access the
|
|
||||||
proxy. This can increase the cost of denial of service attacks and slow down
|
|
||||||
automated abuse.
|
|
||||||
|
|
||||||
When configured, users access the challenge UI and request a token. The server
|
|
||||||
sends a challenge to the client, which asks the user's browser to find a
|
|
||||||
solution to the challenge that meets a certain constraint (the difficulty
|
|
||||||
level). Once the user has found a solution, they can submit it to the server
|
|
||||||
and get a user token valid for a period you specify.
|
|
||||||
|
|
||||||
The proof-of-work challenge uses the argon2id hash function.
|
|
||||||
|
|
||||||
## Configuration
|
|
||||||
|
|
||||||
To enable proof-of-work verification, set the following environment variables:
|
|
||||||
|
|
||||||
```
|
|
||||||
GATEKEEPER=user_token
|
|
||||||
CAPTCHA_MODE=proof_of_work
|
|
||||||
# Validity of the token in hours
|
|
||||||
POW_TOKEN_HOURS=24
|
|
||||||
# Max number of IPs that can use a user_token issued via proof-of-work
|
|
||||||
POW_TOKEN_MAX_IPS=2
|
|
||||||
# The difficulty level of the proof-of-work challenge. You can use one of the
|
|
||||||
# predefined levels specified below, or you can specify a custom number of
|
|
||||||
# expected hash iterations.
|
|
||||||
POW_DIFFICULTY_LEVEL=low
|
|
||||||
# The time limit for solving the challenge, in minutes
|
|
||||||
POW_CHALLENGE_TIMEOUT=30
|
|
||||||
```
|
|
||||||
|
|
||||||
## Difficulty Levels
|
|
||||||
|
|
||||||
The difficulty level controls how long, on average, it will take for a user to
|
|
||||||
solve the proof-of-work challenge. Due to randomness, the actual time can very
|
|
||||||
significantly; lucky users may solve the challenge in a fraction of the average
|
|
||||||
time, while unlucky users may take much longer.
|
|
||||||
|
|
||||||
The difficulty level doesn't affect the speed of the hash function itself, only
|
|
||||||
the number of hashes that will need to be computed. Therefore, the time required
|
|
||||||
to complete the challenge scales linearly with the difficulty level's iteration
|
|
||||||
count.
|
|
||||||
|
|
||||||
You can adjust the difficulty level while the proxy is running from the admin
|
|
||||||
interface.
|
|
||||||
|
|
||||||
Be aware that there is a time limit for solving the challenge, by default set to
|
|
||||||
30 minutes. Above 'high' difficulty, you will probably need to increase the time
|
|
||||||
limit or it will be very hard for users with slow devices to find a solution
|
|
||||||
within the time limit.
|
|
||||||
|
|
||||||
### Low
|
|
||||||
|
|
||||||
- Average of 200 iterations required
|
|
||||||
- Default setting.
|
|
||||||
|
|
||||||
### Medium
|
|
||||||
|
|
||||||
- Average of 900 iterations required
|
|
||||||
|
|
||||||
### High
|
|
||||||
|
|
||||||
- Average of 1900 iterations required
|
|
||||||
|
|
||||||
### Extreme
|
|
||||||
|
|
||||||
- Average of 4000 iterations required
|
|
||||||
- Not recommended unless you are expecting very high levels of abuse
|
|
||||||
- May require increasing `POW_CHALLENGE_TIMEOUT`
|
|
||||||
|
|
||||||
### Custom
|
|
||||||
|
|
||||||
Setting `POW_DIFFICULTY_LEVEL` to an integer will use that number of iterations
|
|
||||||
as the difficulty level.
|
|
||||||
|
|
||||||
## Other challenge settings
|
|
||||||
|
|
||||||
- `POW_CHALLENGE_TIMEOUT`: The time limit for solving the challenge, in minutes.
|
|
||||||
Default is 30.
|
|
||||||
- `POW_TOKEN_HOURS`: The period of time for which a user token issued via proof-
|
|
||||||
of-work can be used. Default is 24 hours. Starts when the challenge is solved.
|
|
||||||
- `POW_TOKEN_MAX_IPS`: The maximum number of unique IPs that can use a single
|
|
||||||
user token issued via proof-of-work. Default is 2.
|
|
||||||
- `POW_TOKEN_PURGE_HOURS`: The period of time after which an expired user token
|
|
||||||
issued via proof-of-work will be removed from the database. Until it is
|
|
||||||
purged, users can refresh expired tokens by completing a half-difficulty
|
|
||||||
challenge. Default is 48 hours.
|
|
||||||
- `POW_MAX_TOKENS_PER_IP`: The maximum number of active user tokens that can
|
|
||||||
be associated with a single IP address. After this limit is reached, the
|
|
||||||
oldest token will be forcibly expired when a new token is issued. Set to 0
|
|
||||||
to disable this feature. Default is 0.
|
|
||||||
|
|
||||||
## Custom argon2id parameters
|
|
||||||
|
|
||||||
You can set custom argon2id parameters for the proof-of-work challenge.
|
|
||||||
Generally, you should not need to change these unless you have a specific
|
|
||||||
reason to do so.
|
|
||||||
|
|
||||||
The listed values are the defaults.
|
|
||||||
|
|
||||||
```
|
|
||||||
ARGON2_TIME_COST=8
|
|
||||||
ARGON2_MEMORY_KB=65536
|
|
||||||
ARGON2_PARALLELISM=1
|
|
||||||
ARGON2_HASH_LENGTH=32
|
|
||||||
```
|
|
||||||
|
|
||||||
Increasing parallelism will not do much except increase memory consumption for
|
|
||||||
both the client and server, because browser proof-of-work implementations are
|
|
||||||
single-threaded. It's better to increase the time cost if you want to increase
|
|
||||||
the difficulty.
|
|
||||||
|
|
||||||
Increasing memory too much may cause memory exhaustion on some mobile devices,
|
|
||||||
particularly on iOS due to the way Safari handles WebAssembly memory allocation.
|
|
||||||
|
|
||||||
## Tested hash rates
|
|
||||||
|
|
||||||
These were measured with the default argon2id parameters listed above. These
|
|
||||||
tests were not at all scientific so take them with a grain of salt.
|
|
||||||
|
|
||||||
Safari does not like large WASM memory usage, so concurrency is limited to 4 to
|
|
||||||
avoid overallocating memory on mobile WebKit browsers. Thermal throttling can
|
|
||||||
also significantly reduce hash rates on mobile devices.
|
|
||||||
|
|
||||||
- Intel Core i9-13900K (Chrome): 33-35 H/s
|
|
||||||
- Intel Core i9-13900K (Firefox): 29-32 H/s
|
|
||||||
- Intel Core i9-13900K (Chrome, in VM limited to 4 cores): 12.2 - 13.0 H/s
|
|
||||||
- iPad Pro (M2) (Safari, 6 workers): 8.0 - 10 H/s
|
|
||||||
- Thermal throttles early. 8 cores is normal concurrency, but unstable.
|
|
||||||
- iPhone 15 Pro Max (Safari): 4.0 - 4.6 H/s
|
|
||||||
- Samsung Galaxy S10e (Chrome): 3.6 - 3.8 H/s
|
|
||||||
- This is a 2019 phone almost matching an iPhone five years newer because of
|
|
||||||
bad Safari performance.
|
|
||||||
@@ -12,7 +12,6 @@ Several of these features require you to set secrets in your environment. If usi
|
|||||||
- [Memory](#memory)
|
- [Memory](#memory)
|
||||||
- [Firebase Realtime Database](#firebase-realtime-database)
|
- [Firebase Realtime Database](#firebase-realtime-database)
|
||||||
- [Firebase setup instructions](#firebase-setup-instructions)
|
- [Firebase setup instructions](#firebase-setup-instructions)
|
||||||
- [Whitelisting admin IP addresses](#whitelisting-admin-ip-addresses)
|
|
||||||
|
|
||||||
## No user management (`GATEKEEPER=none`)
|
## No user management (`GATEKEEPER=none`)
|
||||||
|
|
||||||
@@ -62,12 +61,3 @@ To use Firebase Realtime Database to persist user data, set the following enviro
|
|||||||
8. Set `GATEKEEPER_STORE` to `firebase_rtdb` in your environment if you haven't already.
|
8. Set `GATEKEEPER_STORE` to `firebase_rtdb` in your environment if you haven't already.
|
||||||
|
|
||||||
The proxy server will attempt to connect to your Firebase Realtime Database at startup and will throw an error if it cannot connect. If you see this error, check that your `FIREBASE_RTDB_URL` and `FIREBASE_KEY` secrets are set correctly.
|
The proxy server will attempt to connect to your Firebase Realtime Database at startup and will throw an error if it cannot connect. If you see this error, check that your `FIREBASE_RTDB_URL` and `FIREBASE_KEY` secrets are set correctly.
|
||||||
|
|
||||||
## Whitelisting admin IP addresses
|
|
||||||
You can add your own IP ranges to the `ADMIN_WHITELIST` environment variable for additional security.
|
|
||||||
|
|
||||||
You can provide a comma-separated list containing individual IPv4 or IPv6 addresses, or CIDR ranges.
|
|
||||||
|
|
||||||
To whitelist an entire IP range, use CIDR notation. For example, `192.168.0.1/24` would whitelist all addresses from `192.168.0.0` to `192.168.0.255`.
|
|
||||||
|
|
||||||
To disable the whitelist, set `ADMIN_WHITELIST=0.0.0.0/0,::0`, which will allow access from any IPv4 or IPv6 address. This is the default behavior.
|
|
||||||
|
|||||||
Generated
+819
-2175
File diff suppressed because it is too large
Load Diff
+12
-25
@@ -4,12 +4,10 @@
|
|||||||
"description": "Reverse proxy for the OpenAI API",
|
"description": "Reverse proxy for the OpenAI API",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc && copyfiles -u 1 src/**/*.ejs build",
|
"build": "tsc && copyfiles -u 1 src/**/*.ejs build",
|
||||||
"database:migrate": "ts-node scripts/migrate.ts",
|
|
||||||
"postinstall": "patch-package",
|
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
"start": "node --trace-deprecation --trace-warnings build/server.js",
|
"start": "node build/server.js",
|
||||||
"start:dev": "nodemon --watch src --exec ts-node --transpile-only src/server.ts",
|
"start:dev": "nodemon --watch src --exec ts-node --transpile-only src/server.ts",
|
||||||
"start:debug": "ts-node --inspect --transpile-only src/server.ts",
|
"start:replit": "tsc && node build/server.js",
|
||||||
"start:watch": "nodemon --require source-map-support/register build/server.js",
|
"start:watch": "nodemon --require source-map-support/register build/server.js",
|
||||||
"type-check": "tsc --noEmit"
|
"type-check": "tsc --noEmit"
|
||||||
},
|
},
|
||||||
@@ -21,52 +19,42 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@anthropic-ai/tokenizer": "^0.0.4",
|
"@anthropic-ai/tokenizer": "^0.0.4",
|
||||||
"@aws-crypto/sha256-js": "^5.2.0",
|
"@aws-crypto/sha256-js": "^5.2.0",
|
||||||
"@huggingface/jinja": "^0.3.0",
|
|
||||||
"@node-rs/argon2": "^1.8.3",
|
|
||||||
"@smithy/eventstream-codec": "^2.1.3",
|
"@smithy/eventstream-codec": "^2.1.3",
|
||||||
"@smithy/eventstream-serde-node": "^2.1.3",
|
"@smithy/eventstream-serde-node": "^2.1.3",
|
||||||
"@smithy/protocol-http": "^3.2.1",
|
"@smithy/protocol-http": "^3.2.1",
|
||||||
"@smithy/signature-v4": "^2.1.3",
|
"@smithy/signature-v4": "^2.1.3",
|
||||||
|
"@smithy/types": "^2.10.1",
|
||||||
"@smithy/util-utf8": "^2.1.1",
|
"@smithy/util-utf8": "^2.1.1",
|
||||||
"axios": "^1.7.4",
|
"axios": "^1.3.5",
|
||||||
"better-sqlite3": "^10.0.0",
|
|
||||||
"check-disk-space": "^3.4.0",
|
"check-disk-space": "^3.4.0",
|
||||||
"cookie-parser": "^1.4.6",
|
"cookie-parser": "^1.4.6",
|
||||||
"copyfiles": "^2.4.1",
|
"copyfiles": "^2.4.1",
|
||||||
"cors": "^2.8.5",
|
"cors": "^2.8.5",
|
||||||
"csrf-csrf": "^2.3.0",
|
"csrf-csrf": "^2.3.0",
|
||||||
"dotenv": "^16.3.1",
|
"dotenv": "^16.3.1",
|
||||||
"ejs": "^3.1.10",
|
"ejs": "^3.1.9",
|
||||||
"express": "^4.19.3",
|
"express": "^4.18.2",
|
||||||
"express-session": "^1.17.3",
|
"express-session": "^1.17.3",
|
||||||
"firebase-admin": "^12.5.0",
|
"firebase-admin": "^11.10.1",
|
||||||
"glob": "^10.3.12",
|
|
||||||
"googleapis": "^122.0.0",
|
"googleapis": "^122.0.0",
|
||||||
"http-proxy": "1.18.1",
|
"http-proxy-middleware": "^3.0.0-beta.1",
|
||||||
"http-proxy-middleware": "^3.0.2",
|
|
||||||
"ipaddr.js": "^2.1.0",
|
|
||||||
"memorystore": "^1.6.7",
|
"memorystore": "^1.6.7",
|
||||||
"multer": "^1.4.5-lts.1",
|
"multer": "^1.4.5-lts.1",
|
||||||
"node-schedule": "^2.1.1",
|
"node-schedule": "^2.1.1",
|
||||||
"patch-package": "^8.0.0",
|
|
||||||
"pino": "^8.11.0",
|
"pino": "^8.11.0",
|
||||||
"pino-http": "^8.3.3",
|
"pino-http": "^8.3.3",
|
||||||
"proxy-agent": "^6.4.0",
|
"sanitize-html": "2.12.1",
|
||||||
"sanitize-html": "^2.13.0",
|
|
||||||
"sharp": "^0.32.6",
|
"sharp": "^0.32.6",
|
||||||
"showdown": "^2.1.0",
|
"showdown": "^2.1.0",
|
||||||
"source-map-support": "^0.5.21",
|
"source-map-support": "^0.5.21",
|
||||||
"stream-json": "^1.8.0",
|
"stream-json": "^1.8.0",
|
||||||
"tiktoken": "^1.0.10",
|
"tiktoken": "^1.0.10",
|
||||||
"tinyws": "^0.1.0",
|
|
||||||
"uuid": "^9.0.0",
|
"uuid": "^9.0.0",
|
||||||
"zlib": "^1.0.5",
|
"zlib": "^1.0.5",
|
||||||
"zod": "^3.22.3",
|
"zod": "^3.22.3",
|
||||||
"zod-error": "^1.5.0"
|
"zod-error": "^1.5.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@smithy/types": "^3.3.0",
|
|
||||||
"@types/better-sqlite3": "^7.6.10",
|
|
||||||
"@types/cookie-parser": "^1.4.3",
|
"@types/cookie-parser": "^1.4.3",
|
||||||
"@types/cors": "^2.8.13",
|
"@types/cors": "^2.8.13",
|
||||||
"@types/express": "^4.17.17",
|
"@types/express": "^4.17.17",
|
||||||
@@ -84,13 +72,12 @@
|
|||||||
"nodemon": "^3.0.1",
|
"nodemon": "^3.0.1",
|
||||||
"pino-pretty": "^10.2.3",
|
"pino-pretty": "^10.2.3",
|
||||||
"prettier": "^3.0.3",
|
"prettier": "^3.0.3",
|
||||||
"prettier-plugin-ejs": "^1.0.3",
|
|
||||||
"ts-node": "^10.9.1",
|
"ts-node": "^10.9.1",
|
||||||
"typescript": "^5.4.2"
|
"typescript": "^5.4.2"
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"node-fetch@2.x": {
|
"google-gax": "^3.6.1",
|
||||||
"whatwg-url": "14.x"
|
"postcss": "^8.4.31",
|
||||||
}
|
"follow-redirects": "^1.15.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
# Patches
|
|
||||||
Contains monkey patches for certain packages, applied using `patch-package`.
|
|
||||||
|
|
||||||
## `http-proxy+1.18.1.patch`
|
|
||||||
Modifies the `http-proxy` package to work around an incompatibility with
|
|
||||||
body-parser and SOCKS5 proxies due to some esoteric stream handling behavior
|
|
||||||
when `socks-proxy-agent` is used instead of a generic http.Agent.
|
|
||||||
|
|
||||||
Modification involves adjusting the `buffer` property on ProxyServer's `options`
|
|
||||||
object to be a function that returns a stream instead of a stream itself. This
|
|
||||||
allows us to give it a function which produces a new Readable from the already-
|
|
||||||
parsed request body.
|
|
||||||
|
|
||||||
With the old implementation we would need to create an entirely new ProxyServer
|
|
||||||
instance for each request, which is not ideal under heavy load.
|
|
||||||
|
|
||||||
`http-proxy` hasn't been updated in six years so it's unlikely that this patch
|
|
||||||
will be broken by future updates, but it's stil pinned to 1.18.1 for now.
|
|
||||||
|
|
||||||
### See also
|
|
||||||
https://github.com/chimurai/http-proxy-middleware/issues/40
|
|
||||||
https://github.com/chimurai/http-proxy-middleware/issues/299
|
|
||||||
https://github.com/http-party/node-http-proxy/pull/1027
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
diff --git a/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js b/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js
|
|
||||||
index 7ae7355..c825c27 100644
|
|
||||||
--- a/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js
|
|
||||||
+++ b/node_modules/http-proxy/lib/http-proxy/passes/web-incoming.js
|
|
||||||
@@ -167,7 +167,7 @@ module.exports = {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- (options.buffer || req).pipe(proxyReq);
|
|
||||||
+ (options.buffer(req) || req).pipe(proxyReq);
|
|
||||||
|
|
||||||
proxyReq.on('response', function(proxyRes) {
|
|
||||||
if(server) { server.emit('proxyRes', proxyRes, req, res); }
|
|
||||||
@@ -1,349 +0,0 @@
|
|||||||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
||||||
|
|
||||||
/* Document
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the line height in all browsers.
|
|
||||||
* 2. Prevent adjustments of font size after orientation changes in iOS.
|
|
||||||
*/
|
|
||||||
|
|
||||||
html {
|
|
||||||
line-height: 1.15; /* 1 */
|
|
||||||
-webkit-text-size-adjust: 100%; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Sections
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the margin in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Render the `main` element consistently in IE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
main {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correct the font size and margin on `h1` elements within `section` and
|
|
||||||
* `article` contexts in Chrome, Firefox, and Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 2em;
|
|
||||||
margin: 0.67em 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Grouping content
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Add the correct box sizing in Firefox.
|
|
||||||
* 2. Show the overflow in Edge and IE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
hr {
|
|
||||||
box-sizing: content-box; /* 1 */
|
|
||||||
height: 0; /* 1 */
|
|
||||||
overflow: visible; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
||||||
* 2. Correct the odd `em` font sizing in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
pre {
|
|
||||||
font-family: monospace, monospace; /* 1 */
|
|
||||||
font-size: 1em; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Text-level semantics
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the gray background on active links in IE 10.
|
|
||||||
*/
|
|
||||||
|
|
||||||
a {
|
|
||||||
background-color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Remove the bottom border in Chrome 57-
|
|
||||||
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
abbr[title] {
|
|
||||||
border-bottom: none; /* 1 */
|
|
||||||
text-decoration: underline; /* 2 */
|
|
||||||
text-decoration: underline dotted; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add the correct font weight in Chrome, Edge, and Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
b,
|
|
||||||
strong {
|
|
||||||
font-weight: bolder;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the inheritance and scaling of font size in all browsers.
|
|
||||||
* 2. Correct the odd `em` font sizing in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
code,
|
|
||||||
kbd,
|
|
||||||
samp {
|
|
||||||
font-family: monospace, monospace; /* 1 */
|
|
||||||
font-size: 1em; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add the correct font size in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
small {
|
|
||||||
font-size: 80%;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Prevent `sub` and `sup` elements from affecting the line height in
|
|
||||||
* all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
sub,
|
|
||||||
sup {
|
|
||||||
font-size: 75%;
|
|
||||||
line-height: 0;
|
|
||||||
position: relative;
|
|
||||||
vertical-align: baseline;
|
|
||||||
}
|
|
||||||
|
|
||||||
sub {
|
|
||||||
bottom: -0.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
sup {
|
|
||||||
top: -0.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Embedded content
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the border on images inside links in IE 10.
|
|
||||||
*/
|
|
||||||
|
|
||||||
img {
|
|
||||||
border-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Forms
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Change the font styles in all browsers.
|
|
||||||
* 2. Remove the margin in Firefox and Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button,
|
|
||||||
input,
|
|
||||||
optgroup,
|
|
||||||
select,
|
|
||||||
textarea {
|
|
||||||
font-family: inherit; /* 1 */
|
|
||||||
font-size: 100%; /* 1 */
|
|
||||||
line-height: 1.15; /* 1 */
|
|
||||||
margin: 0; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show the overflow in IE.
|
|
||||||
* 1. Show the overflow in Edge.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button,
|
|
||||||
input { /* 1 */
|
|
||||||
overflow: visible;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the inheritance of text transform in Edge, Firefox, and IE.
|
|
||||||
* 1. Remove the inheritance of text transform in Firefox.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button,
|
|
||||||
select { /* 1 */
|
|
||||||
text-transform: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correct the inability to style clickable types in iOS and Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button,
|
|
||||||
[type="button"],
|
|
||||||
[type="reset"],
|
|
||||||
[type="submit"] {
|
|
||||||
-webkit-appearance: button;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the inner border and padding in Firefox.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button::-moz-focus-inner,
|
|
||||||
[type="button"]::-moz-focus-inner,
|
|
||||||
[type="reset"]::-moz-focus-inner,
|
|
||||||
[type="submit"]::-moz-focus-inner {
|
|
||||||
border-style: none;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Restore the focus styles unset by the previous rule.
|
|
||||||
*/
|
|
||||||
|
|
||||||
button:-moz-focusring,
|
|
||||||
[type="button"]:-moz-focusring,
|
|
||||||
[type="reset"]:-moz-focusring,
|
|
||||||
[type="submit"]:-moz-focusring {
|
|
||||||
outline: 1px dotted ButtonText;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correct the padding in Firefox.
|
|
||||||
*/
|
|
||||||
|
|
||||||
fieldset {
|
|
||||||
padding: 0.35em 0.75em 0.625em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the text wrapping in Edge and IE.
|
|
||||||
* 2. Correct the color inheritance from `fieldset` elements in IE.
|
|
||||||
* 3. Remove the padding so developers are not caught out when they zero out
|
|
||||||
* `fieldset` elements in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
legend {
|
|
||||||
box-sizing: border-box; /* 1 */
|
|
||||||
color: inherit; /* 2 */
|
|
||||||
display: table; /* 1 */
|
|
||||||
max-width: 100%; /* 1 */
|
|
||||||
padding: 0; /* 3 */
|
|
||||||
white-space: normal; /* 1 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
|
|
||||||
*/
|
|
||||||
|
|
||||||
progress {
|
|
||||||
vertical-align: baseline;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the default vertical scrollbar in IE 10+.
|
|
||||||
*/
|
|
||||||
|
|
||||||
textarea {
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Add the correct box sizing in IE 10.
|
|
||||||
* 2. Remove the padding in IE 10.
|
|
||||||
*/
|
|
||||||
|
|
||||||
[type="checkbox"],
|
|
||||||
[type="radio"] {
|
|
||||||
box-sizing: border-box; /* 1 */
|
|
||||||
padding: 0; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
|
||||||
*/
|
|
||||||
|
|
||||||
[type="number"]::-webkit-inner-spin-button,
|
|
||||||
[type="number"]::-webkit-outer-spin-button {
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the odd appearance in Chrome and Safari.
|
|
||||||
* 2. Correct the outline style in Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
[type="search"] {
|
|
||||||
-webkit-appearance: textfield; /* 1 */
|
|
||||||
outline-offset: -2px; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Remove the inner padding in Chrome and Safari on macOS.
|
|
||||||
*/
|
|
||||||
|
|
||||||
[type="search"]::-webkit-search-decoration {
|
|
||||||
-webkit-appearance: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 1. Correct the inability to style clickable types in iOS and Safari.
|
|
||||||
* 2. Change font properties to `inherit` in Safari.
|
|
||||||
*/
|
|
||||||
|
|
||||||
::-webkit-file-upload-button {
|
|
||||||
-webkit-appearance: button; /* 1 */
|
|
||||||
font: inherit; /* 2 */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Interactive
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Add the correct display in Edge, IE 10+, and Firefox.
|
|
||||||
*/
|
|
||||||
|
|
||||||
details {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Add the correct display in all browsers.
|
|
||||||
*/
|
|
||||||
|
|
||||||
summary {
|
|
||||||
display: list-item;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Misc
|
|
||||||
========================================================================== */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add the correct display in IE 10+.
|
|
||||||
*/
|
|
||||||
|
|
||||||
template {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Add the correct display in IE 10.
|
|
||||||
*/
|
|
||||||
|
|
||||||
[hidden] {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
@@ -1,231 +0,0 @@
|
|||||||
/* modified https://github.com/oxalorg/sakura */
|
|
||||||
html {
|
|
||||||
font-size: 62.5%;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
||||||
"Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
line-height: 1.618;
|
|
||||||
max-width: 38em;
|
|
||||||
margin: auto;
|
|
||||||
color: #c9c9c9;
|
|
||||||
background-color: #222222;
|
|
||||||
padding: 13px;
|
|
||||||
}
|
|
||||||
@media (max-width: 684px) {
|
|
||||||
body {
|
|
||||||
font-size: 1.53rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (max-width: 382px) {
|
|
||||||
body {
|
|
||||||
font-size: 1.35rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
line-height: 1.1;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
||||||
"Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
||||||
font-weight: 700;
|
|
||||||
margin-top: 3rem;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
overflow-wrap: break-word;
|
|
||||||
word-wrap: break-word;
|
|
||||||
-ms-word-break: break-all;
|
|
||||||
word-break: break-word;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 2.35em;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
font-size: 1.75em;
|
|
||||||
}
|
|
||||||
h4 {
|
|
||||||
font-size: 1.5em;
|
|
||||||
}
|
|
||||||
h5 {
|
|
||||||
font-size: 1.25em;
|
|
||||||
}
|
|
||||||
h6 {
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin-top: 0px;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
small,
|
|
||||||
sub,
|
|
||||||
sup {
|
|
||||||
font-size: 75%;
|
|
||||||
}
|
|
||||||
hr {
|
|
||||||
border-color: #ffffff;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: #ffffff;
|
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: #e6e6e6;
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: #c9c9c9;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
ul {
|
|
||||||
padding-left: 1.4em;
|
|
||||||
margin-top: 0px;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
margin-bottom: 0.4em;
|
|
||||||
}
|
|
||||||
blockquote {
|
|
||||||
margin-left: 0px;
|
|
||||||
margin-right: 0px;
|
|
||||||
padding-left: 1em;
|
|
||||||
padding-top: 0.8em;
|
|
||||||
padding-bottom: 0.8em;
|
|
||||||
padding-right: 0.8em;
|
|
||||||
border-left: 5px solid #ffffff;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
background-color: #4a4a4a;
|
|
||||||
}
|
|
||||||
blockquote p {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
img,
|
|
||||||
video {
|
|
||||||
height: auto;
|
|
||||||
max-width: 100%;
|
|
||||||
margin-top: 0px;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
background-color: #4a4a4a;
|
|
||||||
display: block;
|
|
||||||
padding: 1em;
|
|
||||||
overflow-x: auto;
|
|
||||||
margin-top: 0px;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
code,
|
|
||||||
kbd,
|
|
||||||
samp {
|
|
||||||
font-size: 0.9em;
|
|
||||||
padding: 0 0.5em;
|
|
||||||
background-color: #4a4a4a;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
}
|
|
||||||
pre > code {
|
|
||||||
padding: 0;
|
|
||||||
background-color: transparent;
|
|
||||||
white-space: pre;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
text-align: justify;
|
|
||||||
width: 100%;
|
|
||||||
border-collapse: collapse;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
td,
|
|
||||||
th {
|
|
||||||
padding: 0.5em;
|
|
||||||
border-bottom: 1px solid #4a4a4a;
|
|
||||||
}
|
|
||||||
input,
|
|
||||||
textarea {
|
|
||||||
border: 1px solid #c9c9c9;
|
|
||||||
}
|
|
||||||
input:focus,
|
|
||||||
textarea:focus {
|
|
||||||
border: 1px solid #ffffff;
|
|
||||||
}
|
|
||||||
textarea {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.button,
|
|
||||||
button,
|
|
||||||
input[type="submit"],
|
|
||||||
input[type="reset"],
|
|
||||||
input[type="button"],
|
|
||||||
input[type="file"]::file-selector-button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 5px 10px;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
background-color: #ffffff;
|
|
||||||
color: #222222;
|
|
||||||
border-radius: 1px;
|
|
||||||
border: 1px solid #ffffff;
|
|
||||||
cursor: pointer;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.button[disabled],
|
|
||||||
button[disabled],
|
|
||||||
input[type="submit"][disabled],
|
|
||||||
input[type="reset"][disabled],
|
|
||||||
input[type="button"][disabled],
|
|
||||||
input[type="file"][disabled] {
|
|
||||||
cursor: default;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
.button:hover,
|
|
||||||
button:hover,
|
|
||||||
input[type="submit"]:hover,
|
|
||||||
input[type="reset"]:hover,
|
|
||||||
input[type="button"]:hover,
|
|
||||||
input[type="file"]::file-selector-button:hover {
|
|
||||||
background-color: #c9c9c9;
|
|
||||||
color: #222222;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
.button:focus-visible,
|
|
||||||
button:focus-visible,
|
|
||||||
input[type="submit"]:focus-visible,
|
|
||||||
input[type="reset"]:focus-visible,
|
|
||||||
input[type="button"]:focus-visible,
|
|
||||||
input[type="file"]::file-selector-button:focus-visible {
|
|
||||||
outline-style: solid;
|
|
||||||
outline-width: 2px;
|
|
||||||
}
|
|
||||||
textarea,
|
|
||||||
select,
|
|
||||||
input {
|
|
||||||
color: #c9c9c9;
|
|
||||||
padding: 6px 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
background-color: #4a4a4a;
|
|
||||||
border: 1px solid #4a4a4a;
|
|
||||||
border-radius: 4px;
|
|
||||||
box-shadow: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
textarea:focus,
|
|
||||||
select:focus,
|
|
||||||
input:focus {
|
|
||||||
border: 1px solid #ffffff;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
input[type="checkbox"]:focus {
|
|
||||||
outline: 1px dotted #ffffff;
|
|
||||||
}
|
|
||||||
label,
|
|
||||||
legend,
|
|
||||||
fieldset {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
@@ -1,237 +0,0 @@
|
|||||||
/* modified https://github.com/oxalorg/sakura */
|
|
||||||
:root {
|
|
||||||
--accent-color: #4a4a4a;
|
|
||||||
--accent-color-hover: #5a5a5a;
|
|
||||||
--link-color: #58739c;
|
|
||||||
--link-visted-color: #6f5e6f;
|
|
||||||
}
|
|
||||||
html {
|
|
||||||
font-size: 62.5%;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
||||||
"Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
font-size: 1.8rem;
|
|
||||||
line-height: 1.618;
|
|
||||||
max-width: 38em;
|
|
||||||
margin: auto;
|
|
||||||
color: #4a4a4a;
|
|
||||||
background-color: #f9f9f9;
|
|
||||||
padding: 13px;
|
|
||||||
}
|
|
||||||
@media (max-width: 684px) {
|
|
||||||
body {
|
|
||||||
font-size: 1.53rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (max-width: 382px) {
|
|
||||||
body {
|
|
||||||
font-size: 1.35rem;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
h1,
|
|
||||||
h2,
|
|
||||||
h3,
|
|
||||||
h4,
|
|
||||||
h5,
|
|
||||||
h6 {
|
|
||||||
line-height: 1.1;
|
|
||||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
||||||
"Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
||||||
font-weight: 700;
|
|
||||||
margin-top: 3rem;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
overflow-wrap: break-word;
|
|
||||||
word-wrap: break-word;
|
|
||||||
-ms-word-break: break-all;
|
|
||||||
word-break: break-word;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 2.35em;
|
|
||||||
}
|
|
||||||
h2 {
|
|
||||||
font-size: 2em;
|
|
||||||
}
|
|
||||||
h3 {
|
|
||||||
font-size: 1.75em;
|
|
||||||
}
|
|
||||||
h4 {
|
|
||||||
font-size: 1.5em;
|
|
||||||
}
|
|
||||||
h5 {
|
|
||||||
font-size: 1.25em;
|
|
||||||
}
|
|
||||||
h6 {
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
small,
|
|
||||||
sub,
|
|
||||||
sup {
|
|
||||||
font-size: 75%;
|
|
||||||
}
|
|
||||||
hr {
|
|
||||||
border-color: var(--accent-color);
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
color: var(--link-color);
|
|
||||||
}
|
|
||||||
a:visited {
|
|
||||||
color: var(--link-visted-color);
|
|
||||||
}
|
|
||||||
a:hover {
|
|
||||||
color: var(--accent-color-hover);
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
ul {
|
|
||||||
padding-left: 1.4em;
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
li {
|
|
||||||
margin-bottom: 0.4em;
|
|
||||||
}
|
|
||||||
blockquote {
|
|
||||||
margin-left: 0;
|
|
||||||
margin-right: 0;
|
|
||||||
padding-left: 1em;
|
|
||||||
padding-top: 0.8em;
|
|
||||||
padding-bottom: 0.8em;
|
|
||||||
padding-right: 0.8em;
|
|
||||||
border-left: 5px solid var(--accent-color);
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
}
|
|
||||||
blockquote p {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
img,
|
|
||||||
video {
|
|
||||||
height: auto;
|
|
||||||
max-width: 100%;
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
}
|
|
||||||
pre {
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
display: block;
|
|
||||||
padding: 1em;
|
|
||||||
overflow-x: auto;
|
|
||||||
margin-top: 0;
|
|
||||||
margin-bottom: 2.5rem;
|
|
||||||
font-size: 0.9em;
|
|
||||||
}
|
|
||||||
code,
|
|
||||||
kbd,
|
|
||||||
samp {
|
|
||||||
font-size: 0.9em;
|
|
||||||
padding: 0 0.5em;
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
white-space: pre-wrap;
|
|
||||||
}
|
|
||||||
pre > code {
|
|
||||||
padding: 0;
|
|
||||||
background-color: transparent;
|
|
||||||
white-space: pre;
|
|
||||||
font-size: 1em;
|
|
||||||
}
|
|
||||||
table {
|
|
||||||
text-align: justify;
|
|
||||||
width: 100%;
|
|
||||||
border-collapse: collapse;
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
}
|
|
||||||
td,
|
|
||||||
th {
|
|
||||||
padding: 0.5em;
|
|
||||||
border-bottom: 1px solid #f1f1f1;
|
|
||||||
}
|
|
||||||
input,
|
|
||||||
textarea {
|
|
||||||
border: 1px solid #4a4a4a;
|
|
||||||
}
|
|
||||||
input:focus,
|
|
||||||
textarea:focus {
|
|
||||||
border: 1px solid var(--accent-color);
|
|
||||||
}
|
|
||||||
textarea {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
.button,
|
|
||||||
button,
|
|
||||||
input[type="submit"],
|
|
||||||
input[type="reset"],
|
|
||||||
input[type="button"],
|
|
||||||
input[type="file"]::file-selector-button {
|
|
||||||
display: inline-block;
|
|
||||||
padding: 5px 10px;
|
|
||||||
text-align: center;
|
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
|
||||||
background-color: var(--accent-color);
|
|
||||||
color: #f9f9f9;
|
|
||||||
border-radius: 2px;
|
|
||||||
border: 1px solid var(--accent-color);
|
|
||||||
cursor: pointer;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.button[disabled],
|
|
||||||
button[disabled],
|
|
||||||
input[type="submit"][disabled],
|
|
||||||
input[type="reset"][disabled],
|
|
||||||
input[type="button"][disabled],
|
|
||||||
input[type="file"][disabled] {
|
|
||||||
cursor: default;
|
|
||||||
opacity: 0.5;
|
|
||||||
}
|
|
||||||
.button:hover,
|
|
||||||
button:hover,
|
|
||||||
input[type="submit"]:hover,
|
|
||||||
input[type="reset"]:hover,
|
|
||||||
input[type="button"]:hover,
|
|
||||||
input[type="file"]::file-selector-button:hover {
|
|
||||||
background-color: var(--accent-color-hover);
|
|
||||||
color: #f9f9f9;
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
.button:focus-visible,
|
|
||||||
button:focus-visible,
|
|
||||||
input[type="submit"]:focus-visible,
|
|
||||||
input[type="reset"]:focus-visible,
|
|
||||||
input[type="button"]:focus-visible,
|
|
||||||
input[type="file"]::file-selector-button:focus-visible {
|
|
||||||
outline-style: solid;
|
|
||||||
outline-width: 2px;
|
|
||||||
}
|
|
||||||
textarea,
|
|
||||||
select,
|
|
||||||
input {
|
|
||||||
color: #4a4a4a;
|
|
||||||
padding: 6px 10px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
background-color: #f1f1f1;
|
|
||||||
border: 1px solid #f1f1f1;
|
|
||||||
border-radius: 4px;
|
|
||||||
box-shadow: none;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
textarea:focus,
|
|
||||||
select:focus,
|
|
||||||
input:focus {
|
|
||||||
border: 1px solid var(--accent-color);
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
input[type="checkbox"]:focus {
|
|
||||||
outline: 1px dotted var(--accent-color);
|
|
||||||
}
|
|
||||||
label,
|
|
||||||
legend,
|
|
||||||
fieldset {
|
|
||||||
display: block;
|
|
||||||
margin-bottom: 0.5rem;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
importScripts(
|
|
||||||
"https://cdn.jsdelivr.net/npm/hash-wasm@4.11.0/dist/argon2.umd.min.js"
|
|
||||||
);
|
|
||||||
|
|
||||||
let active = false;
|
|
||||||
let nonce = 0;
|
|
||||||
let signature = "";
|
|
||||||
let lastNotify = 0;
|
|
||||||
let hashesSinceLastNotify = 0;
|
|
||||||
let params = {
|
|
||||||
salt: null,
|
|
||||||
hashLength: 0,
|
|
||||||
iterations: 0,
|
|
||||||
memorySize: 0,
|
|
||||||
parallelism: 0,
|
|
||||||
targetValue: BigInt(0),
|
|
||||||
safariFix: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
self.onmessage = async (event) => {
|
|
||||||
const { data } = event;
|
|
||||||
switch (data.type) {
|
|
||||||
case "stop":
|
|
||||||
active = false;
|
|
||||||
self.postMessage({ type: "paused", hashes: hashesSinceLastNotify });
|
|
||||||
return;
|
|
||||||
case "start":
|
|
||||||
active = true;
|
|
||||||
signature = data.signature;
|
|
||||||
nonce = data.nonce;
|
|
||||||
|
|
||||||
const c = data.challenge;
|
|
||||||
const salt = new Uint8Array(c.s.length / 2);
|
|
||||||
for (let i = 0; i < c.s.length; i += 2) {
|
|
||||||
salt[i / 2] = parseInt(c.s.slice(i, i + 2), 16);
|
|
||||||
}
|
|
||||||
|
|
||||||
params = {
|
|
||||||
salt: salt,
|
|
||||||
hashLength: c.hl,
|
|
||||||
iterations: c.t,
|
|
||||||
memorySize: c.m,
|
|
||||||
parallelism: c.p,
|
|
||||||
targetValue: BigInt(c.d.slice(0, -1)),
|
|
||||||
safariFix: data.isMobileWebkit,
|
|
||||||
};
|
|
||||||
|
|
||||||
console.log("Started", params);
|
|
||||||
self.postMessage({ type: "started" });
|
|
||||||
setTimeout(solve, 0);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const doHash = async (password) => {
|
|
||||||
const { salt, hashLength, iterations, memorySize, parallelism } = params;
|
|
||||||
return await self.hashwasm.argon2id({
|
|
||||||
password,
|
|
||||||
salt,
|
|
||||||
hashLength,
|
|
||||||
iterations,
|
|
||||||
memorySize,
|
|
||||||
parallelism,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const checkHash = (hash) => {
|
|
||||||
const { targetValue } = params;
|
|
||||||
const hashValue = BigInt(`0x${hash}`);
|
|
||||||
return hashValue <= targetValue;
|
|
||||||
};
|
|
||||||
|
|
||||||
const solve = async () => {
|
|
||||||
if (!active) {
|
|
||||||
console.log("Stopped solver", nonce);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Safari WASM doesn't like multiple calls in one worker
|
|
||||||
const batchSize = 1;
|
|
||||||
const batch = [];
|
|
||||||
for (let i = 0; i < batchSize; i++) {
|
|
||||||
batch.push(nonce++);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const results = await Promise.all(
|
|
||||||
batch.map(async (nonce) => {
|
|
||||||
const hash = await doHash(String(nonce));
|
|
||||||
return { hash, nonce };
|
|
||||||
})
|
|
||||||
);
|
|
||||||
hashesSinceLastNotify += batchSize;
|
|
||||||
|
|
||||||
const solution = results.find(({ hash }) => checkHash(hash));
|
|
||||||
if (solution) {
|
|
||||||
console.log("Solution found", solution, params.salt);
|
|
||||||
self.postMessage({ type: "solved", nonce: solution.nonce });
|
|
||||||
active = false;
|
|
||||||
} else {
|
|
||||||
if (Date.now() - lastNotify >= 500) {
|
|
||||||
console.log("Last nonce", nonce, "Hashes", hashesSinceLastNotify);
|
|
||||||
self.postMessage({ type: "progress", hashes: hashesSinceLastNotify });
|
|
||||||
lastNotify = Date.now();
|
|
||||||
hashesSinceLastNotify = 0;
|
|
||||||
}
|
|
||||||
setTimeout(solve, 10);
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
console.error("Error", error);
|
|
||||||
const stack = error.stack;
|
|
||||||
const debug = {
|
|
||||||
stack,
|
|
||||||
lastNonce: nonce,
|
|
||||||
targetValue: params.targetValue,
|
|
||||||
};
|
|
||||||
self.postMessage({ type: "error", error: error.message, debug });
|
|
||||||
active = false;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
import Database from "better-sqlite3";
|
|
||||||
import { DATABASE_VERSION, migrateDatabase } from "../src/shared/database";
|
|
||||||
import { logger } from "../src/logger";
|
|
||||||
import { config } from "../src/config";
|
|
||||||
|
|
||||||
const log = logger.child({ module: "scripts/migrate" });
|
|
||||||
|
|
||||||
async function runMigration() {
|
|
||||||
let targetVersion = Number(process.argv[2]) || undefined;
|
|
||||||
|
|
||||||
if (!targetVersion) {
|
|
||||||
log.info("Enter target version or leave empty to use the latest version.");
|
|
||||||
process.stdin.resume();
|
|
||||||
process.stdin.setEncoding("utf8");
|
|
||||||
const input = await new Promise<string>((resolve) => {
|
|
||||||
process.stdin.on("data", (text) => {
|
|
||||||
resolve((String(text) || "").trim());
|
|
||||||
});
|
|
||||||
});
|
|
||||||
process.stdin.pause();
|
|
||||||
targetVersion = Number(input);
|
|
||||||
if (!targetVersion) {
|
|
||||||
targetVersion = DATABASE_VERSION;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const db = new Database(config.sqliteDataPath, {
|
|
||||||
verbose: (msg, ...args) => log.debug({ args }, String(msg)),
|
|
||||||
});
|
|
||||||
|
|
||||||
const currentVersion = db.pragma("user_version", { simple: true });
|
|
||||||
log.info({ currentVersion, targetVersion }, "Running migrations.");
|
|
||||||
migrateDatabase(targetVersion, db);
|
|
||||||
}
|
|
||||||
|
|
||||||
runMigration().catch((error) => {
|
|
||||||
log.error(error, "Migration failed.");
|
|
||||||
process.exit(1);
|
|
||||||
});
|
|
||||||
@@ -230,39 +230,6 @@ Content-Type: application/json
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
###
|
|
||||||
# @name Proxy / GCP Claude -- Native Completion
|
|
||||||
POST {{proxy-host}}/proxy/gcp/claude/v1/complete
|
|
||||||
Authorization: Bearer {{proxy-key}}
|
|
||||||
anthropic-version: 2023-01-01
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"model": "claude-v2",
|
|
||||||
"max_tokens_to_sample": 10,
|
|
||||||
"temperature": 0,
|
|
||||||
"stream": true,
|
|
||||||
"prompt": "What is genshin impact\n\n:Assistant:"
|
|
||||||
}
|
|
||||||
|
|
||||||
###
|
|
||||||
# @name Proxy / GCP Claude -- OpenAI-to-Anthropic API Translation
|
|
||||||
POST {{proxy-host}}/proxy/gcp/claude/chat/completions
|
|
||||||
Authorization: Bearer {{proxy-key}}
|
|
||||||
Content-Type: application/json
|
|
||||||
|
|
||||||
{
|
|
||||||
"model": "gpt-3.5-turbo",
|
|
||||||
"max_tokens": 50,
|
|
||||||
"stream": true,
|
|
||||||
"messages": [
|
|
||||||
{
|
|
||||||
"role": "user",
|
|
||||||
"content": "What is genshin impact?"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
###
|
###
|
||||||
# @name Proxy / Azure OpenAI -- Native Chat Completions
|
# @name Proxy / Azure OpenAI -- Native Chat Completions
|
||||||
POST {{proxy-host}}/proxy/azure/openai/chat/completions
|
POST {{proxy-host}}/proxy/azure/openai/chat/completions
|
||||||
|
|||||||
@@ -1,102 +0,0 @@
|
|||||||
import Database from "better-sqlite3";
|
|
||||||
import { v4 as uuidv4 } from "uuid";
|
|
||||||
import { config } from "../src/config";
|
|
||||||
|
|
||||||
function generateRandomIP() {
|
|
||||||
return (
|
|
||||||
Math.floor(Math.random() * 255) +
|
|
||||||
"." +
|
|
||||||
Math.floor(Math.random() * 255) +
|
|
||||||
"." +
|
|
||||||
Math.floor(Math.random() * 255) +
|
|
||||||
"." +
|
|
||||||
Math.floor(Math.random() * 255)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function generateRandomDate() {
|
|
||||||
const end = new Date();
|
|
||||||
const start = new Date(end);
|
|
||||||
start.setDate(end.getDate() - 90);
|
|
||||||
const randomDate = new Date(
|
|
||||||
start.getTime() + Math.random() * (end.getTime() - start.getTime())
|
|
||||||
);
|
|
||||||
return randomDate.toISOString();
|
|
||||||
}
|
|
||||||
|
|
||||||
function generateMockSHA256() {
|
|
||||||
const characters = 'abcdef0123456789';
|
|
||||||
let hash = '';
|
|
||||||
|
|
||||||
for (let i = 0; i < 64; i++) {
|
|
||||||
const randomIndex = Math.floor(Math.random() * characters.length);
|
|
||||||
hash += characters[randomIndex];
|
|
||||||
}
|
|
||||||
|
|
||||||
return hash;
|
|
||||||
}
|
|
||||||
|
|
||||||
function getRandomModelFamily() {
|
|
||||||
const modelFamilies = [
|
|
||||||
"turbo",
|
|
||||||
"gpt4",
|
|
||||||
"gpt4-32k",
|
|
||||||
"gpt4-turbo",
|
|
||||||
"claude",
|
|
||||||
"claude-opus",
|
|
||||||
"gemini-pro",
|
|
||||||
"mistral-tiny",
|
|
||||||
"mistral-small",
|
|
||||||
"mistral-medium",
|
|
||||||
"mistral-large",
|
|
||||||
"aws-claude",
|
|
||||||
"aws-claude-opus",
|
|
||||||
"gcp-claude",
|
|
||||||
"gcp-claude-opus",
|
|
||||||
"azure-turbo",
|
|
||||||
"azure-gpt4",
|
|
||||||
"azure-gpt4-32k",
|
|
||||||
"azure-gpt4-turbo",
|
|
||||||
"dall-e",
|
|
||||||
"azure-dall-e",
|
|
||||||
];
|
|
||||||
return modelFamilies[Math.floor(Math.random() * modelFamilies.length)];
|
|
||||||
}
|
|
||||||
|
|
||||||
(async () => {
|
|
||||||
const db = new Database(config.sqliteDataPath);
|
|
||||||
const numRows = 100;
|
|
||||||
const insertStatement = db.prepare(`
|
|
||||||
INSERT INTO events (type, ip, date, model, family, hashes, userToken, inputTokens, outputTokens)
|
|
||||||
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)
|
|
||||||
`);
|
|
||||||
|
|
||||||
const users = Array.from({ length: 10 }, () => uuidv4());
|
|
||||||
function getRandomUser() {
|
|
||||||
return users[Math.floor(Math.random() * users.length)];
|
|
||||||
}
|
|
||||||
|
|
||||||
const transaction = db.transaction(() => {
|
|
||||||
for (let i = 0; i < numRows; i++) {
|
|
||||||
insertStatement.run(
|
|
||||||
"chat_completion",
|
|
||||||
generateRandomIP(),
|
|
||||||
generateRandomDate(),
|
|
||||||
getRandomModelFamily() + "-" + Math.floor(Math.random() * 100),
|
|
||||||
getRandomModelFamily(),
|
|
||||||
Array.from(
|
|
||||||
{ length: Math.floor(Math.random() * 10) },
|
|
||||||
generateMockSHA256
|
|
||||||
).join(","),
|
|
||||||
getRandomUser(),
|
|
||||||
Math.floor(Math.random() * 500),
|
|
||||||
Math.floor(Math.random() * 6000)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
transaction();
|
|
||||||
|
|
||||||
console.log(`Inserted ${numRows} rows into the events table.`);
|
|
||||||
db.close();
|
|
||||||
})();
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
// uses the aws sdk to sign a request, then uses axios to send it to the bedrock REST API manually
|
|
||||||
import axios from "axios";
|
|
||||||
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
||||||
import { SignatureV4 } from "@smithy/signature-v4";
|
|
||||||
import { HttpRequest } from "@smithy/protocol-http";
|
|
||||||
|
|
||||||
const AWS_ACCESS_KEY_ID = process.env.AWS_ACCESS_KEY_ID!;
|
|
||||||
const AWS_SECRET_ACCESS_KEY = process.env.AWS_SECRET_ACCESS_KEY!;
|
|
||||||
|
|
||||||
// Copied from amazon bedrock docs
|
|
||||||
|
|
||||||
// List models
|
|
||||||
// ListFoundationModels
|
|
||||||
// Service: Amazon Bedrock
|
|
||||||
// List of Bedrock foundation models that you can use. For more information, see Foundation models in the
|
|
||||||
// Bedrock User Guide.
|
|
||||||
// Request Syntax
|
|
||||||
// GET /foundation-models?
|
|
||||||
// byCustomizationType=byCustomizationType&byInferenceType=byInferenceType&byOutputModality=byOutputModality&byProvider=byProvider
|
|
||||||
// HTTP/1.1
|
|
||||||
// URI Request Parameters
|
|
||||||
// The request uses the following URI parameters.
|
|
||||||
// byCustomizationType (p. 38)
|
|
||||||
// List by customization type.
|
|
||||||
// Valid Values: FINE_TUNING
|
|
||||||
// byInferenceType (p. 38)
|
|
||||||
// List by inference type.
|
|
||||||
// Valid Values: ON_DEMAND | PROVISIONED
|
|
||||||
// byOutputModality (p. 38)
|
|
||||||
// List by output modality type.
|
|
||||||
// Valid Values: TEXT | IMAGE | EMBEDDING
|
|
||||||
// byProvider (p. 38)
|
|
||||||
// A Bedrock model provider.
|
|
||||||
// Pattern: ^[a-z0-9-]{1,63}$
|
|
||||||
// Request Body
|
|
||||||
// The request does not have a request body
|
|
||||||
|
|
||||||
// Run inference on a text model
|
|
||||||
// Send an invoke request to run inference on a Titan Text G1 - Express model. We set the accept
|
|
||||||
// parameter to accept any content type in the response.
|
|
||||||
// POST https://bedrock.us-east-1.amazonaws.com/model/amazon.titan-text-express-v1/invoke
|
|
||||||
// -H accept: */*
|
|
||||||
// -H content-type: application/json
|
|
||||||
// Payload
|
|
||||||
// {"inputText": "Hello world"}
|
|
||||||
// Example response
|
|
||||||
// Response for the above request.
|
|
||||||
// -H content-type: application/json
|
|
||||||
// Payload
|
|
||||||
// <the model response>
|
|
||||||
|
|
||||||
const AMZ_REGION = "us-east-1";
|
|
||||||
const AMZ_HOST = "invoke-bedrock.us-east-1.amazonaws.com";
|
|
||||||
|
|
||||||
async function listModels() {
|
|
||||||
const httpRequest = new HttpRequest({
|
|
||||||
method: "GET",
|
|
||||||
protocol: "https:",
|
|
||||||
hostname: AMZ_HOST,
|
|
||||||
path: "/foundation-models",
|
|
||||||
headers: { ["Host"]: AMZ_HOST },
|
|
||||||
});
|
|
||||||
|
|
||||||
const signedRequest = await signRequest(httpRequest);
|
|
||||||
const response = await axios.get(
|
|
||||||
`https://${signedRequest.hostname}${signedRequest.path}`,
|
|
||||||
{ headers: signedRequest.headers }
|
|
||||||
);
|
|
||||||
console.log(response.data);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function invokeModel() {
|
|
||||||
const model = "anthropic.claude-v1";
|
|
||||||
const httpRequest = new HttpRequest({
|
|
||||||
method: "POST",
|
|
||||||
protocol: "https:",
|
|
||||||
hostname: AMZ_HOST,
|
|
||||||
path: `/model/${model}/invoke`,
|
|
||||||
headers: {
|
|
||||||
["Host"]: AMZ_HOST,
|
|
||||||
["accept"]: "*/*",
|
|
||||||
["content-type"]: "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify({
|
|
||||||
temperature: 0.5,
|
|
||||||
prompt: "\n\nHuman:Hello world\n\nAssistant:",
|
|
||||||
max_tokens_to_sample: 10,
|
|
||||||
}),
|
|
||||||
});
|
|
||||||
console.log("httpRequest", httpRequest);
|
|
||||||
|
|
||||||
const signedRequest = await signRequest(httpRequest);
|
|
||||||
const response = await axios.post(
|
|
||||||
`https://${signedRequest.hostname}${signedRequest.path}`,
|
|
||||||
signedRequest.body,
|
|
||||||
{ headers: signedRequest.headers }
|
|
||||||
);
|
|
||||||
console.log(response.status);
|
|
||||||
console.log(response.headers);
|
|
||||||
console.log(response.data);
|
|
||||||
console.log("full url", response.request.res.responseUrl);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function signRequest(request: HttpRequest) {
|
|
||||||
const signer = new SignatureV4({
|
|
||||||
sha256: Sha256,
|
|
||||||
credentials: {
|
|
||||||
accessKeyId: AWS_ACCESS_KEY_ID,
|
|
||||||
secretAccessKey: AWS_SECRET_ACCESS_KEY,
|
|
||||||
},
|
|
||||||
region: AMZ_REGION,
|
|
||||||
service: "bedrock",
|
|
||||||
});
|
|
||||||
return await signer.sign(request, { signingDate: new Date() });
|
|
||||||
}
|
|
||||||
|
|
||||||
// listModels();
|
|
||||||
// invokeModel();
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
const axios = require("axios");
|
|
||||||
|
|
||||||
function randomInteger(max) {
|
|
||||||
return Math.floor(Math.random() * max + 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
async function testQueue() {
|
|
||||||
const requests = Array(10).fill(undefined).map(async function() {
|
|
||||||
const maxTokens = randomInteger(2000);
|
|
||||||
|
|
||||||
const headers = {
|
|
||||||
"Authorization": "Bearer test",
|
|
||||||
"Content-Type": "application/json",
|
|
||||||
"X-Forwarded-For": `${randomInteger(255)}.${randomInteger(255)}.${randomInteger(255)}.${randomInteger(255)}`,
|
|
||||||
};
|
|
||||||
|
|
||||||
const payload = {
|
|
||||||
model: "gpt-4o-mini-2024-07-18",
|
|
||||||
max_tokens: 20 + maxTokens,
|
|
||||||
stream: false,
|
|
||||||
messages: [{role: "user", content: "You are being benchmarked regarding your reliability at outputting exact, machine-comprehensible data. Output the sentence \"The quick brown fox jumps over the lazy dog.\" Do not precede it with quotemarks or any form of preamble, and do not output anything after the sentence."}],
|
|
||||||
temperature: 0,
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
const response = await axios.post(
|
|
||||||
"http://localhost:7860/proxy/openai/v1/chat/completions",
|
|
||||||
payload,
|
|
||||||
{ headers }
|
|
||||||
);
|
|
||||||
|
|
||||||
if (response.status !== 200) {
|
|
||||||
console.error(`Request {$maxTokens} finished with status code ${response.status} and response`, response.data);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const content = response.data.choices[0].message.content;
|
|
||||||
|
|
||||||
console.log(
|
|
||||||
`Request ${maxTokens} `,
|
|
||||||
content === "The quick brown fox jumps over the lazy dog." ? "OK" : `mangled: ${content}`
|
|
||||||
);
|
|
||||||
} catch (error) {
|
|
||||||
const msg = error.response;
|
|
||||||
console.error(`Error in req ${maxTokens}:`, error.message, msg || "");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
await Promise.all(requests);
|
|
||||||
console.log("All requests finished");
|
|
||||||
}
|
|
||||||
|
|
||||||
testQueue();
|
|
||||||
@@ -1,49 +0,0 @@
|
|||||||
import { Router } from "express";
|
|
||||||
import { z } from "zod";
|
|
||||||
import { encodeCursor, decodeCursor } from "../../shared/utils";
|
|
||||||
import { eventsRepo } from "../../shared/database/repos/event";
|
|
||||||
|
|
||||||
const router = Router();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns events for the given user token.
|
|
||||||
* GET /admin/events/:token
|
|
||||||
* @query first - The number of events to return.
|
|
||||||
* @query after - The cursor to start returning events from (exclusive).
|
|
||||||
*/
|
|
||||||
router.get("/:token", (req, res) => {
|
|
||||||
const schema = z.object({
|
|
||||||
token: z.string(),
|
|
||||||
first: z.coerce.number().int().positive().max(200).default(25),
|
|
||||||
after: z
|
|
||||||
.string()
|
|
||||||
.optional()
|
|
||||||
.transform((v) => {
|
|
||||||
try {
|
|
||||||
return decodeCursor(v);
|
|
||||||
} catch {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
})
|
|
||||||
.nullable(),
|
|
||||||
sort: z.string().optional(),
|
|
||||||
});
|
|
||||||
const args = schema.safeParse({ ...req.params, ...req.query });
|
|
||||||
if (!args.success) {
|
|
||||||
return res.status(400).json({ error: args.error });
|
|
||||||
}
|
|
||||||
|
|
||||||
const data = eventsRepo
|
|
||||||
.getUserEvents(args.data.token, {
|
|
||||||
limit: args.data.first,
|
|
||||||
cursor: args.data.after,
|
|
||||||
})
|
|
||||||
.map((e) => ({ node: e, cursor: encodeCursor(e.date) }));
|
|
||||||
|
|
||||||
res.json({
|
|
||||||
data,
|
|
||||||
endCursor: data[data.length - 1]?.cursor,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
export { router as eventsApiRouter };
|
|
||||||
+4
-19
@@ -1,31 +1,17 @@
|
|||||||
import express, { Router } from "express";
|
import express, { Router } from "express";
|
||||||
import { createWhitelistMiddleware } from "../shared/cidr";
|
import { authorize } from "./auth";
|
||||||
import { HttpError } from "../shared/errors";
|
import { HttpError } from "../shared/errors";
|
||||||
import { injectCsrfToken, checkCsrfToken } from "../shared/inject-csrf";
|
|
||||||
import { injectLocals } from "../shared/inject-locals";
|
import { injectLocals } from "../shared/inject-locals";
|
||||||
import { withSession } from "../shared/with-session";
|
import { withSession } from "../shared/with-session";
|
||||||
import { config } from "../config";
|
import { injectCsrfToken, checkCsrfToken } from "../shared/inject-csrf";
|
||||||
import { renderPage } from "../info-page";
|
import { renderPage } from "../info-page";
|
||||||
import { buildInfo } from "../service-info";
|
import { buildInfo } from "../service-info";
|
||||||
import { authorize } from "./auth";
|
|
||||||
import { loginRouter } from "./login";
|
import { loginRouter } from "./login";
|
||||||
import { eventsApiRouter } from "./api/events";
|
import { usersApiRouter as apiRouter } from "./api/users";
|
||||||
import { usersApiRouter } from "./api/users";
|
|
||||||
import { usersWebRouter as webRouter } from "./web/manage";
|
import { usersWebRouter as webRouter } from "./web/manage";
|
||||||
import { logger } from "../logger";
|
|
||||||
|
|
||||||
const adminRouter = Router();
|
const adminRouter = Router();
|
||||||
|
|
||||||
const whitelist = createWhitelistMiddleware(
|
|
||||||
"ADMIN_WHITELIST",
|
|
||||||
config.adminWhitelist
|
|
||||||
);
|
|
||||||
|
|
||||||
if (!whitelist.ranges.length && config.adminKey?.length) {
|
|
||||||
logger.error("ADMIN_WHITELIST is empty. No admin requests will be allowed. Set 0.0.0.0/0 to allow all.");
|
|
||||||
}
|
|
||||||
|
|
||||||
adminRouter.use(whitelist);
|
|
||||||
adminRouter.use(
|
adminRouter.use(
|
||||||
express.json({ limit: "20mb" }),
|
express.json({ limit: "20mb" }),
|
||||||
express.urlencoded({ extended: true, limit: "20mb" })
|
express.urlencoded({ extended: true, limit: "20mb" })
|
||||||
@@ -33,8 +19,7 @@ adminRouter.use(
|
|||||||
adminRouter.use(withSession);
|
adminRouter.use(withSession);
|
||||||
adminRouter.use(injectCsrfToken);
|
adminRouter.use(injectCsrfToken);
|
||||||
|
|
||||||
adminRouter.use("/users", authorize({ via: "header" }), usersApiRouter);
|
adminRouter.use("/users", authorize({ via: "header" }), apiRouter);
|
||||||
adminRouter.use("/events", authorize({ via: "header" }), eventsApiRouter);
|
|
||||||
|
|
||||||
adminRouter.use(checkCsrfToken);
|
adminRouter.use(checkCsrfToken);
|
||||||
adminRouter.use(injectLocals);
|
adminRouter.use(injectLocals);
|
||||||
|
|||||||
+6
-197
@@ -1,5 +1,4 @@
|
|||||||
import { Router } from "express";
|
import { Router } from "express";
|
||||||
import ipaddr from "ipaddr.js";
|
|
||||||
import multer from "multer";
|
import multer from "multer";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import { config } from "../../config";
|
import { config } from "../../config";
|
||||||
@@ -16,8 +15,6 @@ import {
|
|||||||
UserTokenCounts,
|
UserTokenCounts,
|
||||||
} from "../../shared/users/schema";
|
} from "../../shared/users/schema";
|
||||||
import { getLastNImages } from "../../shared/file-storage/image-history";
|
import { getLastNImages } from "../../shared/file-storage/image-history";
|
||||||
import { blacklists, parseCidrs, whitelists } from "../../shared/cidr";
|
|
||||||
import { invalidatePowChallenges } from "../../user/web/pow-captcha";
|
|
||||||
|
|
||||||
const router = Router();
|
const router = Router();
|
||||||
|
|
||||||
@@ -43,74 +40,6 @@ router.get("/create-user", (req, res) => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
router.get("/anti-abuse", (_req, res) => {
|
|
||||||
const wl = [...whitelists.entries()];
|
|
||||||
const bl = [...blacklists.entries()];
|
|
||||||
|
|
||||||
res.render("admin_anti-abuse", {
|
|
||||||
captchaMode: config.captchaMode,
|
|
||||||
difficulty: config.powDifficultyLevel,
|
|
||||||
whitelists: wl.map((w) => ({
|
|
||||||
name: w[0],
|
|
||||||
mode: "whitelist",
|
|
||||||
ranges: w[1].ranges,
|
|
||||||
})),
|
|
||||||
blacklists: bl.map((b) => ({
|
|
||||||
name: b[0],
|
|
||||||
mode: "blacklist",
|
|
||||||
ranges: b[1].ranges,
|
|
||||||
})),
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
router.post("/cidr", (req, res) => {
|
|
||||||
const body = req.body;
|
|
||||||
const valid = z
|
|
||||||
.object({
|
|
||||||
action: z.enum(["add", "remove"]),
|
|
||||||
mode: z.enum(["whitelist", "blacklist"]),
|
|
||||||
name: z.string().min(1),
|
|
||||||
mask: z.string().min(1),
|
|
||||||
})
|
|
||||||
.safeParse(body);
|
|
||||||
|
|
||||||
if (!valid.success) {
|
|
||||||
throw new HttpError(
|
|
||||||
400,
|
|
||||||
valid.error.issues.flatMap((issue) => issue.message).join(", ")
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
const { mode, name, mask } = valid.data;
|
|
||||||
const list = (mode === "whitelist" ? whitelists : blacklists).get(name);
|
|
||||||
if (!list) {
|
|
||||||
throw new HttpError(404, "List not found");
|
|
||||||
}
|
|
||||||
if (valid.data.action === "remove") {
|
|
||||||
const newRanges = new Set(list.ranges);
|
|
||||||
newRanges.delete(mask);
|
|
||||||
list.updateRanges([...newRanges]);
|
|
||||||
req.session.flash = {
|
|
||||||
type: "success",
|
|
||||||
message: `${mode} ${name} updated`,
|
|
||||||
};
|
|
||||||
return res.redirect("/admin/manage/anti-abuse");
|
|
||||||
} else if (valid.data.action === "add") {
|
|
||||||
const result = parseCidrs(mask);
|
|
||||||
if (result.length === 0) {
|
|
||||||
throw new HttpError(400, "Invalid CIDR mask");
|
|
||||||
}
|
|
||||||
|
|
||||||
const newRanges = new Set([...list.ranges, mask]);
|
|
||||||
list.updateRanges([...newRanges]);
|
|
||||||
req.session.flash = {
|
|
||||||
type: "success",
|
|
||||||
message: `${mode} ${name} updated`,
|
|
||||||
};
|
|
||||||
return res.redirect("/admin/manage/anti-abuse");
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
router.post("/create-user", (req, res) => {
|
router.post("/create-user", (req, res) => {
|
||||||
const body = req.body;
|
const body = req.body;
|
||||||
|
|
||||||
@@ -268,14 +197,7 @@ router.post("/maintenance", (req, res) => {
|
|||||||
let flash = { type: "", message: "" };
|
let flash = { type: "", message: "" };
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case "recheck": {
|
case "recheck": {
|
||||||
const checkable: LLMService[] = [
|
const checkable: LLMService[] = ["openai", "anthropic", "aws", "azure"];
|
||||||
"openai",
|
|
||||||
"anthropic",
|
|
||||||
"aws",
|
|
||||||
"gcp",
|
|
||||||
"azure",
|
|
||||||
"google-ai"
|
|
||||||
];
|
|
||||||
checkable.forEach((s) => keyPool.recheck(s));
|
checkable.forEach((s) => keyPool.recheck(s));
|
||||||
const keyCount = keyPool
|
const keyCount = keyPool
|
||||||
.list()
|
.list()
|
||||||
@@ -301,14 +223,10 @@ router.post("/maintenance", (req, res) => {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "downloadImageMetadata": {
|
case "downloadImageMetadata": {
|
||||||
const data = JSON.stringify(
|
const data = JSON.stringify({
|
||||||
{
|
exportedAt: new Date().toISOString(),
|
||||||
exportedAt: new Date().toISOString(),
|
generations: getLastNImages()
|
||||||
generations: getLastNImages(),
|
}, null, 2);
|
||||||
},
|
|
||||||
null,
|
|
||||||
2
|
|
||||||
);
|
|
||||||
res.setHeader(
|
res.setHeader(
|
||||||
"Content-Disposition",
|
"Content-Disposition",
|
||||||
`attachment; filename=image-metadata-${new Date().toISOString()}.json`
|
`attachment; filename=image-metadata-${new Date().toISOString()}.json`
|
||||||
@@ -316,123 +234,14 @@ router.post("/maintenance", (req, res) => {
|
|||||||
res.setHeader("Content-Type", "application/json");
|
res.setHeader("Content-Type", "application/json");
|
||||||
return res.send(data);
|
return res.send(data);
|
||||||
}
|
}
|
||||||
case "expireTempTokens": {
|
|
||||||
const users = userStore.getUsers();
|
|
||||||
const temps = users.filter((u) => u.type === "temporary");
|
|
||||||
temps.forEach((user) => {
|
|
||||||
user.expiresAt = Date.now();
|
|
||||||
user.disabledReason = "Admin forced expiration.";
|
|
||||||
userStore.upsertUser(user);
|
|
||||||
});
|
|
||||||
invalidatePowChallenges();
|
|
||||||
flash.type = "success";
|
|
||||||
flash.message = `${temps.length} temporary users marked for expiration.`;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "cleanTempTokens": {
|
|
||||||
const users = userStore.getUsers();
|
|
||||||
const disabledTempUsers = users.filter(
|
|
||||||
(u) => u.type === "temporary" && u.expiresAt && u.expiresAt < Date.now()
|
|
||||||
);
|
|
||||||
disabledTempUsers.forEach((user) => {
|
|
||||||
user.disabledAt = 1; //will be cleaned up by the next cron job
|
|
||||||
userStore.upsertUser(user);
|
|
||||||
});
|
|
||||||
flash.type = "success";
|
|
||||||
flash.message = `${disabledTempUsers.length} disabled temporary users marked for cleanup.`;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "setDifficulty": {
|
|
||||||
const selected = req.body["pow-difficulty"];
|
|
||||||
const valid = ["low", "medium", "high", "extreme"];
|
|
||||||
const isNumber = Number.isInteger(Number(selected));
|
|
||||||
if (!selected || !valid.includes(selected) && !isNumber) {
|
|
||||||
throw new HttpError(400, "Invalid difficulty " + selected);
|
|
||||||
}
|
|
||||||
config.powDifficultyLevel = isNumber ? Number(selected) : selected;
|
|
||||||
invalidatePowChallenges();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "generateTempIpReport": {
|
|
||||||
const tempUsers = userStore
|
|
||||||
.getUsers()
|
|
||||||
.filter((u) => u.type === "temporary");
|
|
||||||
const ipv4RangeMap = new Map<string, Set<string>>();
|
|
||||||
const ipv6RangeMap = new Map<string, Set<string>>();
|
|
||||||
|
|
||||||
tempUsers.forEach((u) => {
|
|
||||||
u.ip.forEach((ip) => {
|
|
||||||
try {
|
|
||||||
const parsed = ipaddr.parse(ip);
|
|
||||||
if (parsed.kind() === "ipv4") {
|
|
||||||
const subnet =
|
|
||||||
parsed.toNormalizedString().split(".").slice(0, 3).join(".") +
|
|
||||||
".0/24";
|
|
||||||
const userSet = ipv4RangeMap.get(subnet) || new Set();
|
|
||||||
userSet.add(u.token);
|
|
||||||
ipv4RangeMap.set(subnet, userSet);
|
|
||||||
} else if (parsed.kind() === "ipv6") {
|
|
||||||
const subnet =
|
|
||||||
parsed.toNormalizedString().split(":").slice(0, 4).join(":") +
|
|
||||||
"::/48";
|
|
||||||
const userSet = ipv6RangeMap.get(subnet) || new Set();
|
|
||||||
userSet.add(u.token);
|
|
||||||
ipv6RangeMap.set(subnet, userSet);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
req.log.warn(
|
|
||||||
{ ip, error: e.message },
|
|
||||||
"Invalid IP address; skipping"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
const ipv4Ranges = Array.from(ipv4RangeMap.entries())
|
|
||||||
.map(([subnet, userSet]) => ({
|
|
||||||
subnet,
|
|
||||||
distinctTokens: userSet.size,
|
|
||||||
}))
|
|
||||||
.sort((a, b) => b.distinctTokens - a.distinctTokens);
|
|
||||||
|
|
||||||
const ipv6Ranges = Array.from(ipv6RangeMap.entries())
|
|
||||||
.map(([subnet, userSet]) => ({
|
|
||||||
subnet,
|
|
||||||
distinctTokens: userSet.size,
|
|
||||||
}))
|
|
||||||
.sort((a, b) => {
|
|
||||||
if (a.distinctTokens === b.distinctTokens) {
|
|
||||||
return a.subnet.localeCompare(b.subnet);
|
|
||||||
}
|
|
||||||
return b.distinctTokens - a.distinctTokens;
|
|
||||||
});
|
|
||||||
|
|
||||||
const data = JSON.stringify(
|
|
||||||
{
|
|
||||||
exportedAt: new Date().toISOString(),
|
|
||||||
ipv4Ranges,
|
|
||||||
ipv6Ranges,
|
|
||||||
},
|
|
||||||
null,
|
|
||||||
2
|
|
||||||
);
|
|
||||||
|
|
||||||
res.setHeader(
|
|
||||||
"Content-Disposition",
|
|
||||||
`attachment; filename=temp-ip-report-${new Date().toISOString()}.json`
|
|
||||||
);
|
|
||||||
res.setHeader("Content-Type", "application/json");
|
|
||||||
return res.send(data);
|
|
||||||
}
|
|
||||||
default: {
|
default: {
|
||||||
throw new HttpError(400, "Invalid action");
|
throw new HttpError(400, "Invalid action");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
req.session.flash = flash;
|
req.session.flash = flash;
|
||||||
const referer = req.get("referer");
|
|
||||||
|
|
||||||
return res.redirect(referer || "/admin/manage");
|
return res.redirect(`/admin/manage`);
|
||||||
});
|
});
|
||||||
|
|
||||||
router.get("/download-stats", (_req, res) => {
|
router.get("/download-stats", (_req, res) => {
|
||||||
|
|||||||
@@ -1,160 +0,0 @@
|
|||||||
<%- include("partials/shared_header", { title: "Proof of Work Verification Settings - OAI Reverse Proxy Admin" }) %>
|
|
||||||
<style>
|
|
||||||
details {
|
|
||||||
margin-top: 1em;
|
|
||||||
}
|
|
||||||
details summary {
|
|
||||||
font-weight: bold;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
details p {
|
|
||||||
margin-left: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
#token-manage {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
#token-manage button {
|
|
||||||
flex-grow: 1;
|
|
||||||
margin: 0 0.5em;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<h1>Abuse Mitigation Settings</h1>
|
|
||||||
<div>
|
|
||||||
<h2>Proof-of-Work Verification</h2>
|
|
||||||
<p>
|
|
||||||
The Proof-of-Work difficulty level is used to determine how much work a client must perform to earn a temporary user
|
|
||||||
token. Higher difficulty levels require more work, which can help mitigate abuse by making it more expensive for
|
|
||||||
attackers to generate tokens. However, higher difficulty levels can also make it more difficult for legitimate users
|
|
||||||
to generate tokens. Refer to documentation for guidance.
|
|
||||||
</p>
|
|
||||||
<%if (captchaMode === "none") { %>
|
|
||||||
<p>
|
|
||||||
<strong>PoW verification is not enabled. Set <code>CAPTCHA_MODE=proof_of_work</code> to enable.</strong>
|
|
||||||
</p>
|
|
||||||
<% } else { %>
|
|
||||||
<h3>Difficulty Level</h3>
|
|
||||||
<div>
|
|
||||||
<label for="difficulty">Difficulty Level:</label>
|
|
||||||
<select name="difficulty" id="difficulty" onchange="difficultyChanged(event)">
|
|
||||||
<option value="low">Low</option>
|
|
||||||
<option value="medium">Medium</option>
|
|
||||||
<option value="high">High</option>
|
|
||||||
<option value="extreme">Extreme</option>
|
|
||||||
<option value="custom">Custom</option>
|
|
||||||
</select>
|
|
||||||
<div id="custom-difficulty-container" style="display: none">
|
|
||||||
<label for="customDifficulty">Hashes required (average):</label>
|
|
||||||
<input type="number" id="customDifficulty" value="0" min="1" max="1000000000" />
|
|
||||||
</div>
|
|
||||||
<button onclick='doAction("setDifficulty")'>Update Difficulty</button>
|
|
||||||
</div>
|
|
||||||
<div><span id="currentDifficulty">Current Difficulty: <%= difficulty %></span></div>
|
|
||||||
<% } %>
|
|
||||||
<form id="maintenanceForm" action="/admin/manage/maintenance" method="post">
|
|
||||||
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
|
||||||
<input id="hiddenAction" type="hidden" name="action" value="" />
|
|
||||||
<input id="hiddenDifficulty" type="hidden" name="pow-difficulty" value="" />
|
|
||||||
</form>
|
|
||||||
<h3>Manage Temporary User Tokens</h3>
|
|
||||||
<div id="token-manage">
|
|
||||||
<p><button onclick='doAction("expireTempTokens")'>🕒 Expire All Temp Tokens</button></p>
|
|
||||||
<p><button onclick='doAction("cleanTempTokens")'>🧹 Delete Expired Temp Tokens</button></p>
|
|
||||||
<p><button onclick='doAction("generateTempIpReport")'>📊 Generate Temp Token IP Report</button></p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h2>IP Whitelists and Blacklists</h2>
|
|
||||||
<p>
|
|
||||||
You can specify IP ranges to whitelist or blacklist from accessing the proxy. Entries can be specified as single
|
|
||||||
addresses or
|
|
||||||
<a href="https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation">CIDR notation</a>. IPv6 is
|
|
||||||
supported but not recommended for use with the current version of the proxy.
|
|
||||||
</p>
|
|
||||||
<p>
|
|
||||||
<strong>Note:</strong> Changes here are not persisted across server restarts. If you want to make changes permanent,
|
|
||||||
you can copy the values to your deployment configuration.
|
|
||||||
</p>
|
|
||||||
<% for (let i = 0; i < whitelists.length; i++) { %>
|
|
||||||
<%- include("partials/admin-cidr-widget", { list: whitelists[i] }) %>
|
|
||||||
<% } %>
|
|
||||||
<% for (let i = 0; i < blacklists.length; i++) { %>
|
|
||||||
<%- include("partials/admin-cidr-widget", { list: blacklists[i] }) %>
|
|
||||||
<% } %>
|
|
||||||
<form action="/admin/manage/cidr" method="post" id="cidrForm">
|
|
||||||
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
|
||||||
<input type="hidden" name="action" value="add" />
|
|
||||||
<input type="hidden" name="name" value="" />
|
|
||||||
<input type="hidden" name="mode" value="" />
|
|
||||||
<input type="hidden" name="mask" value="" />
|
|
||||||
</form>
|
|
||||||
<details>
|
|
||||||
<summary>Copy environment variables</summary>
|
|
||||||
<p>
|
|
||||||
If you have made changes with the UI, you can copy the values below to your deployment configuration to persist
|
|
||||||
them across server restarts.
|
|
||||||
</p>
|
|
||||||
<pre>
|
|
||||||
<% for (let i = 0; i < whitelists.length; i++) { %><%= whitelists[i].name %>=<%= whitelists[i].ranges.join(",") %><% } %>
|
|
||||||
<% for (let i = 0; i < blacklists.length; i++) { %><%= blacklists[i].name %>=<%= blacklists[i].ranges.join(",") %><% } %>
|
|
||||||
</pre>
|
|
||||||
</details>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
function difficultyChanged(event) {
|
|
||||||
const value = event.target.value;
|
|
||||||
if (value === "custom") {
|
|
||||||
document.getElementById("custom-difficulty-container").style.display = "block";
|
|
||||||
} else {
|
|
||||||
document.getElementById("custom-difficulty-container").style.display = "none";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function doAction(action) {
|
|
||||||
document.getElementById("hiddenAction").value = action;
|
|
||||||
if (action === "setDifficulty") {
|
|
||||||
const selected = document.getElementById("difficulty").value;
|
|
||||||
const hiddenDifficulty = document.getElementById("hiddenDifficulty");
|
|
||||||
if (selected === "custom") {
|
|
||||||
hiddenDifficulty.value = document.getElementById("customDifficulty").value;
|
|
||||||
} else {
|
|
||||||
hiddenDifficulty.value = selected;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
document.getElementById("maintenanceForm").submit();
|
|
||||||
}
|
|
||||||
|
|
||||||
function onAddCidr(event) {
|
|
||||||
const list = event.target.dataset;
|
|
||||||
const newMask = prompt("Enter the IP or CIDR range to add to the list:");
|
|
||||||
if (!newMask) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const form = document.getElementById("cidrForm");
|
|
||||||
form["action"].value = "add";
|
|
||||||
form["name"].value = list.name;
|
|
||||||
form["mode"].value = list.mode;
|
|
||||||
form["mask"].value = newMask;
|
|
||||||
form.submit();
|
|
||||||
}
|
|
||||||
|
|
||||||
function onRemoveCidr(event) {
|
|
||||||
const list = event.target.dataset;
|
|
||||||
const removeMask = event.target.dataset.mask;
|
|
||||||
if (!removeMask) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const form = document.getElementById("cidrForm");
|
|
||||||
form["action"].value = "remove";
|
|
||||||
form["name"].value = list.name;
|
|
||||||
form["mode"].value = list.mode;
|
|
||||||
form["mask"].value = removeMask;
|
|
||||||
form.submit();
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<%- include("partials/admin-footer") %>
|
|
||||||
@@ -51,8 +51,9 @@
|
|||||||
<legend>Temporary User Options</legend>
|
<legend>Temporary User Options</legend>
|
||||||
<div class="temporary-user-fieldset">
|
<div class="temporary-user-fieldset">
|
||||||
<p class="full-width">
|
<p class="full-width">
|
||||||
Temporary users will be disabled after the specified duration, and their records will be permanently deleted after some time.
|
Temporary users will be disabled after the specified duration, and their records will be deleted 72 hours after that.
|
||||||
These options apply only to new temporary users; existing ones use whatever options were in effect when they were created.
|
These options apply only to new
|
||||||
|
temporary users; existing ones use whatever options were in effect when they were created.
|
||||||
</p>
|
</p>
|
||||||
<label for="temporaryUserDuration" class="full-width">Access duration (in minutes)</label>
|
<label for="temporaryUserDuration" class="full-width">Access duration (in minutes)</label>
|
||||||
<input type="number" name="temporaryUserDuration" id="temporaryUserDuration" value="60" class="full-width" />
|
<input type="number" name="temporaryUserDuration" id="temporaryUserDuration" value="60" class="full-width" />
|
||||||
|
|||||||
@@ -5,6 +5,18 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#statsForm div {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
margin-bottom: 0.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#statsForm div label {
|
||||||
|
width: 6em;
|
||||||
|
text-align: right;
|
||||||
|
margin-right: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
#statsForm ul {
|
#statsForm ul {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding-left: 2em;
|
padding-left: 2em;
|
||||||
@@ -21,17 +33,17 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<h1>Download Stats</h1>
|
<h1>Download Stats</h1>
|
||||||
<p>Download usage statistics to a Markdown document. You can paste this into a service like Rentry.org to share it.</p>
|
<p>
|
||||||
|
Download usage statistics to a Markdown document. You can paste this into a service like Rentry.org to share it.
|
||||||
|
</p>
|
||||||
<div>
|
<div>
|
||||||
<h3>Options</h3>
|
<h3>Options</h3>
|
||||||
<form
|
<form id="statsForm" action="/admin/manage/generate-stats" method="post"
|
||||||
id="statsForm"
|
style="display: flex; flex-direction: column;">
|
||||||
action="/admin/manage/generate-stats"
|
|
||||||
method="post"
|
|
||||||
style="display: flex; flex-direction: column">
|
|
||||||
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
||||||
<div>
|
<div>
|
||||||
<label for="anon"><input id="anon" type="checkbox" name="anon" value="true" /> <span>Anonymize</span></label>
|
<label for="anon">Anonymize</label>
|
||||||
|
<input id="anon" type="checkbox" name="anon" value="true" />
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label for="sort">Sort</label>
|
<label for="sort">Sort</label>
|
||||||
@@ -52,12 +64,11 @@
|
|||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label for="format">Custom Format</label>
|
<label for="format">Custom Format <ul>
|
||||||
<ul>
|
<li><code>{{header}}</code></li>
|
||||||
<li><code>{{header}}</code></li>
|
<li><code>{{stats}}</code></li>
|
||||||
<li><code>{{stats}}</code></li>
|
<li><code>{{time}}</code></li>
|
||||||
<li><code>{{time}}</code></li>
|
</ul></label>
|
||||||
</ul>
|
|
||||||
<textarea id="format" name="format" rows="10" cols="50" placeholder="{{stats}}">
|
<textarea id="format" name="format" rows="10" cols="50" placeholder="{{stats}}">
|
||||||
# Stats
|
# Stats
|
||||||
{{header}}
|
{{header}}
|
||||||
@@ -104,35 +115,33 @@
|
|||||||
loadDefaults();
|
loadDefaults();
|
||||||
|
|
||||||
async function fetchAndCopy() {
|
async function fetchAndCopy() {
|
||||||
const form = document.getElementById("statsForm");
|
const form = document.getElementById('statsForm');
|
||||||
const formData = new FormData(form);
|
const formData = new FormData(form);
|
||||||
|
|
||||||
const response = await fetch(form.action, {
|
const response = await fetch(form.action, {
|
||||||
method: "POST",
|
method: 'POST',
|
||||||
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
|
||||||
credentials: "same-origin",
|
credentials: 'same-origin',
|
||||||
body: new URLSearchParams(formData),
|
body: new URLSearchParams(formData),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
if (response.ok) {
|
if (response.ok) {
|
||||||
const content = await response.text();
|
const content = await response.text();
|
||||||
copyToClipboard(content);
|
copyToClipboard(content);
|
||||||
} else {
|
} else {
|
||||||
throw new Error("Failed to fetch generated stats. Try reloading the page.");
|
throw new Error('Failed to fetch generated stats. Try reloading the page.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function copyToClipboard(text) {
|
function copyToClipboard(text) {
|
||||||
navigator.clipboard
|
navigator.clipboard.writeText(text).then(() => {
|
||||||
.writeText(text)
|
alert('Copied to clipboard');
|
||||||
.then(() => {
|
}).catch(err => {
|
||||||
alert("Copied to clipboard");
|
alert('Failed to copy to clipboard. Try downloading the file instead.');
|
||||||
})
|
});
|
||||||
.catch((err) => {
|
|
||||||
alert("Failed to copy to clipboard. Try downloading the file instead.");
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
document.getElementById("copyButton").addEventListener("click", fetchAndCopy);
|
document.getElementById('copyButton').addEventListener('click', fetchAndCopy);
|
||||||
</script>
|
</script>
|
||||||
<%- include("partials/admin-footer") %>
|
<%- include("partials/admin-footer") %>
|
||||||
|
|||||||
@@ -25,14 +25,13 @@
|
|||||||
<li><a href="/admin/manage/import-users">Import Users</a></li>
|
<li><a href="/admin/manage/import-users">Import Users</a></li>
|
||||||
<li><a href="/admin/manage/export-users">Export Users</a></li>
|
<li><a href="/admin/manage/export-users">Export Users</a></li>
|
||||||
<li><a href="/admin/manage/download-stats">Download Rentry Stats</a>
|
<li><a href="/admin/manage/download-stats">Download Rentry Stats</a>
|
||||||
<li><a href="/admin/manage/anti-abuse">Abuse Mitigation Settings</a></li>
|
|
||||||
<li><a href="/admin/service-info">Service Info</a></li>
|
<li><a href="/admin/service-info">Service Info</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<h3>Maintenance</h3>
|
<h3>Maintenance</h3>
|
||||||
<form id="maintenanceForm" action="/admin/manage/maintenance" method="post">
|
<form id="maintenanceForm" action="/admin/manage/maintenance" method="post">
|
||||||
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
<input id="_csrf" type="hidden" name="_csrf" value="<%= csrfToken %>" />
|
||||||
<input id="hiddenAction" type="hidden" name="action" value="" />
|
<input id="hiddenAction" type="hidden" name="action" value="" />
|
||||||
<div>
|
<div display="flex" flex-direction="column">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Key Recheck</legend>
|
<legend>Key Recheck</legend>
|
||||||
<button id="recheck-keys" type="button" onclick="submitForm('recheck')">Force Key Recheck</button>
|
<button id="recheck-keys" type="button" onclick="submitForm('recheck')">Force Key Recheck</button>
|
||||||
@@ -43,7 +42,7 @@
|
|||||||
<legend>Bulk Quota Management</legend>
|
<legend>Bulk Quota Management</legend>
|
||||||
<p>
|
<p>
|
||||||
<button id="refresh-quotas" type="button" onclick="submitForm('resetQuotas')">Refresh All Quotas</button>
|
<button id="refresh-quotas" type="button" onclick="submitForm('resetQuotas')">Refresh All Quotas</button>
|
||||||
Immediately refreshes all users' quotas by the configured amounts.
|
Resets all users' quotas to the values set in the <code>TOKEN_QUOTA_*</code> environment variables.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<button id="clear-token-counts" type="button" onclick="submitForm('resetCounts')">Clear All Token Counts</button>
|
<button id="clear-token-counts" type="button" onclick="submitForm('resetCounts')">Clear All Token Counts</button>
|
||||||
|
|||||||
@@ -4,8 +4,9 @@
|
|||||||
<% if (users.length === 0) { %>
|
<% if (users.length === 0) { %>
|
||||||
<p>No users found.</p>
|
<p>No users found.</p>
|
||||||
<% } else { %>
|
<% } else { %>
|
||||||
<label for="toggle-nicknames"><input type="checkbox" id="toggle-nicknames" onchange="toggleNicknames()" /> Show Nicknames</label>
|
<input type="checkbox" id="toggle-nicknames" onchange="toggleNicknames()" />
|
||||||
<table class="striped full-width">
|
<label for="toggle-nicknames">Show Nicknames</label>
|
||||||
|
<table class="striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>User</th>
|
<th>User</th>
|
||||||
|
|||||||
@@ -55,9 +55,8 @@
|
|||||||
<td><%- user.disabledReason %></td>
|
<td><%- user.disabledReason %></td>
|
||||||
<% if (user.disabledAt) { %>
|
<% if (user.disabledAt) { %>
|
||||||
<td class="actions">
|
<td class="actions">
|
||||||
<a title="Edit" id="edit-disabledReason" href="#" data-field="disabledReason" data-token="<%= user.token %>"
|
<a title="Edit" id="edit-disabledReason" href="#" data-field="disabledReason"
|
||||||
>✏️</a
|
data-token="<%= user.token %>">✏️</a>
|
||||||
>
|
|
||||||
</td>
|
</td>
|
||||||
<% } %>
|
<% } %>
|
||||||
</tr>
|
</tr>
|
||||||
@@ -73,8 +72,7 @@
|
|||||||
<td colspan="2"><%- include("partials/shared_user_ip_list", { user, shouldRedact: false }) %></td>
|
<td colspan="2"><%- include("partials/shared_user_ip_list", { user, shouldRedact: false }) %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">
|
<th scope="row">Admin Note <span title="Unlike nickname, this is not visible to or editable by the user">🔒</span>
|
||||||
Admin Note <span title="Unlike nickname, this is not visible to or editable by the user">🔒</span>
|
|
||||||
</th>
|
</th>
|
||||||
<td><%- user.adminNote ?? "none" %></td>
|
<td><%- user.adminNote ?? "none" %></td>
|
||||||
<td class="actions">
|
<td class="actions">
|
||||||
@@ -87,24 +85,14 @@
|
|||||||
<td colspan="2"><%- user.expiresAt %></td>
|
<td colspan="2"><%- user.expiresAt %></td>
|
||||||
</tr>
|
</tr>
|
||||||
<% } %>
|
<% } %>
|
||||||
<% if (user.meta) { %>
|
|
||||||
<tr>
|
|
||||||
<th scope="row">Meta</th>
|
|
||||||
<td colspan="2"><%- JSON.stringify(user.meta) %></td>
|
|
||||||
</tr>
|
|
||||||
<% } %>
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<form style="display: none" id="current-values">
|
<form style="display:none" id="current-values">
|
||||||
<input type="hidden" name="token" value="<%- user.token %>" />
|
<input type="hidden" name="token" value="<%- user.token %>" />
|
||||||
<% ["nickname", "type", "disabledAt", "disabledReason", "maxIps", "adminNote"].forEach(function (key) { %>
|
<% ["nickname", "type", "disabledAt", "disabledReason", "maxIps", "adminNote"].forEach(function (key) { %>
|
||||||
<input type="hidden" name="<%- key %>" value="<%- user[key] %>" />
|
<input type="hidden" name="<%- key %>" value="<%- user[key] %>" />
|
||||||
<% }); %>
|
<% }); %>
|
||||||
<!-- tokenRefresh_ keys are dynamically generated -->
|
|
||||||
<% Object.entries(quota).forEach(([family]) => { %>
|
|
||||||
<input type="hidden" name="tokenRefresh_<%- family %>" value="<%- user.tokenRefresh[family] || quota[family] %>" />
|
|
||||||
<% }); %>
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<h3>Quota Information</h3>
|
<h3>Quota Information</h3>
|
||||||
@@ -114,8 +102,7 @@
|
|||||||
<input type="hidden" name="_csrf" value="<%- csrfToken %>" />
|
<input type="hidden" name="_csrf" value="<%- csrfToken %>" />
|
||||||
<button type="submit" class="btn btn-primary">Refresh Quotas for User</button>
|
<button type="submit" class="btn btn-primary">Refresh Quotas for User</button>
|
||||||
</form>
|
</form>
|
||||||
<% } %>
|
<% } %> <%- include("partials/shared_quota-info", { quota, user }) %>
|
||||||
<%- include("partials/shared_quota-info", { quota, user, showRefreshEdit: true }) %>
|
|
||||||
|
|
||||||
<p><a href="/admin/manage/list-users">Back to User List</a></p>
|
<p><a href="/admin/manage/list-users">Back to User List</a></p>
|
||||||
|
|
||||||
@@ -126,25 +113,18 @@
|
|||||||
const token = a.dataset.token;
|
const token = a.dataset.token;
|
||||||
const field = a.dataset.field;
|
const field = a.dataset.field;
|
||||||
const existingValue = document.querySelector(`#current-values input[name=${field}]`).value;
|
const existingValue = document.querySelector(`#current-values input[name=${field}]`).value;
|
||||||
|
let value = prompt(`Enter new value for '${field}'':`, existingValue);
|
||||||
let value = prompt(`Enter new value for '${field}':`, existingValue);
|
|
||||||
if (value !== null) {
|
if (value !== null) {
|
||||||
if (value === "") {
|
if (value === "") {
|
||||||
value = null;
|
value = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const payload = { _csrf: document.querySelector("meta[name=csrf-token]").getAttribute("content") };
|
|
||||||
if (field.startsWith("tokenRefresh_")) {
|
|
||||||
const family = field.slice("tokenRefresh_".length);
|
|
||||||
payload.tokenRefresh = { [family]: Number(value) };
|
|
||||||
} else {
|
|
||||||
payload[field] = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
fetch(`/admin/manage/edit-user/${token}`, {
|
fetch(`/admin/manage/edit-user/${token}`, {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
credentials: "same-origin",
|
credentials: "same-origin",
|
||||||
body: JSON.stringify(payload),
|
body: JSON.stringify({
|
||||||
|
[field]: value,
|
||||||
|
_csrf: document.querySelector("meta[name=csrf-token]").getAttribute("content"),
|
||||||
|
}),
|
||||||
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
headers: { "Content-Type": "application/json", Accept: "application/json" },
|
||||||
})
|
})
|
||||||
.then((res) => Promise.all([res.ok, res.json()]))
|
.then((res) => Promise.all([res.ok, res.json()]))
|
||||||
@@ -152,7 +132,9 @@
|
|||||||
const url = new URL(window.location.href);
|
const url = new URL(window.location.href);
|
||||||
const params = new URLSearchParams();
|
const params = new URLSearchParams();
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
alert(`Failed to edit user: ${json.message}`);
|
params.set("flash", `error: ${json.error.message}`);
|
||||||
|
} else {
|
||||||
|
params.set("flash", `success: User's ${field} updated.`);
|
||||||
}
|
}
|
||||||
url.search = params.toString();
|
url.search = params.toString();
|
||||||
window.location.assign(url);
|
window.location.assign(url);
|
||||||
@@ -162,5 +144,4 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<%- include("partials/admin-ban-xhr-script") %>
|
<%- include("partials/admin-ban-xhr-script") %> <%- include("partials/admin-footer") %>
|
||||||
<%- include("partials/admin-footer") %>
|
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
<h3>
|
|
||||||
<%= list.name %>
|
|
||||||
(<%= list.mode %>)
|
|
||||||
</h3>
|
|
||||||
<ul>
|
|
||||||
<% list.ranges.forEach(function(mask) { %>
|
|
||||||
<li>
|
|
||||||
<%= mask %>
|
|
||||||
<button class="remove" data-mode="<%= list.mode %>" data-name="<%= list.name %>" data-mask="<%= mask %>" onclick="onRemoveCidr(event)">Remove</button>
|
|
||||||
</li>
|
|
||||||
<% }); %>
|
|
||||||
</ul>
|
|
||||||
<button class="add" data-mode="<%= list.mode %>" data-name="<%= list.name %>" onclick="onAddCidr(event)">Add</button>
|
|
||||||
+66
-300
@@ -1,9 +1,8 @@
|
|||||||
import crypto from "crypto";
|
|
||||||
import dotenv from "dotenv";
|
import dotenv from "dotenv";
|
||||||
import type firebase from "firebase-admin";
|
import type firebase from "firebase-admin";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
import pino from "pino";
|
import pino from "pino";
|
||||||
import type { LLMService, ModelFamily } from "./shared/models";
|
import type { ModelFamily } from "./shared/models";
|
||||||
import { MODEL_FAMILIES } from "./shared/models";
|
import { MODEL_FAMILIES } from "./shared/models";
|
||||||
|
|
||||||
dotenv.config();
|
dotenv.config();
|
||||||
@@ -45,13 +44,6 @@ type Config = {
|
|||||||
* @example `AWS_CREDENTIALS=access_key_1:secret_key_1:us-east-1,access_key_2:secret_key_2:us-west-2`
|
* @example `AWS_CREDENTIALS=access_key_1:secret_key_1:us-east-1,access_key_2:secret_key_2:us-west-2`
|
||||||
*/
|
*/
|
||||||
awsCredentials?: string;
|
awsCredentials?: string;
|
||||||
/**
|
|
||||||
* Comma-delimited list of GCP credentials. Each credential item should be a
|
|
||||||
* colon-delimited list of access key, secret key, and GCP region.
|
|
||||||
*
|
|
||||||
* @example `GCP_CREDENTIALS=project1:1@1.com:us-east5:-----BEGIN PRIVATE KEY-----xxx-----END PRIVATE KEY-----,project2:2@2.com:us-east5:-----BEGIN PRIVATE KEY-----xxx-----END PRIVATE KEY-----`
|
|
||||||
*/
|
|
||||||
gcpCredentials?: string;
|
|
||||||
/**
|
/**
|
||||||
* Comma-delimited list of Azure OpenAI credentials. Each credential item
|
* Comma-delimited list of Azure OpenAI credentials. Each credential item
|
||||||
* should be a colon-delimited list of Azure resource name, deployment ID, and
|
* should be a colon-delimited list of Azure resource name, deployment ID, and
|
||||||
@@ -115,70 +107,9 @@ type Config = {
|
|||||||
* `maxIpsPerUser` limit, or if only connections from new IPs are be rejected.
|
* `maxIpsPerUser` limit, or if only connections from new IPs are be rejected.
|
||||||
*/
|
*/
|
||||||
maxIpsAutoBan: boolean;
|
maxIpsAutoBan: boolean;
|
||||||
/**
|
/** Per-IP limit for requests per minute to text and chat models. */
|
||||||
* Which captcha verification mode to use. Requires `user_token` gatekeeper.
|
|
||||||
* Allows users to automatically obtain a token by solving a captcha.
|
|
||||||
* - `none`: No captcha verification; tokens are issued manually.
|
|
||||||
* - `proof_of_work`: Users must solve an Argon2 proof of work to obtain a
|
|
||||||
* temporary usertoken valid for a limited period.
|
|
||||||
*/
|
|
||||||
captchaMode: "none" | "proof_of_work";
|
|
||||||
/**
|
|
||||||
* Duration (in hours) for which a PoW-issued temporary user token is valid.
|
|
||||||
*/
|
|
||||||
powTokenHours: number;
|
|
||||||
/**
|
|
||||||
* The maximum number of IPs from which a single temporary user token can be
|
|
||||||
* used. Upon reaching the limit, the `maxIpsAutoBan` behavior is triggered.
|
|
||||||
*/
|
|
||||||
powTokenMaxIps: number;
|
|
||||||
/**
|
|
||||||
* Difficulty level for the proof-of-work challenge.
|
|
||||||
* - `low`: 200 iterations
|
|
||||||
* - `medium`: 900 iterations
|
|
||||||
* - `high`: 1900 iterations
|
|
||||||
* - `extreme`: 4000 iterations
|
|
||||||
* - `number`: A custom number of iterations to use.
|
|
||||||
*
|
|
||||||
* Difficulty level only affects the number of iterations used in the PoW,
|
|
||||||
* not the complexity of the hash itself. Therefore, the average time-to-solve
|
|
||||||
* will scale linearly with the number of iterations.
|
|
||||||
*
|
|
||||||
* Refer to docs/proof-of-work.md for guidance and hashrate benchmarks.
|
|
||||||
*/
|
|
||||||
powDifficultyLevel: "low" | "medium" | "high" | "extreme" | number;
|
|
||||||
/**
|
|
||||||
* Duration (in minutes) before a PoW challenge expires. Users' browsers must
|
|
||||||
* solve the challenge within this time frame or it will be rejected. Should
|
|
||||||
* be kept somewhat low to prevent abusive clients from working on many
|
|
||||||
* challenges in parallel, but you may need to increase this value for higher
|
|
||||||
* difficulty levels or older devices will not be able to solve the challenge
|
|
||||||
* in time.
|
|
||||||
*
|
|
||||||
* Defaults to 30 minutes.
|
|
||||||
*/
|
|
||||||
powChallengeTimeout: number;
|
|
||||||
/**
|
|
||||||
* Duration (in hours) before expired temporary user tokens are purged from
|
|
||||||
* the user database. Users can refresh expired tokens by solving a faster PoW
|
|
||||||
* challenge as long as the original token has not been purged. Once purged,
|
|
||||||
* the user must solve a full PoW challenge to obtain a new token.
|
|
||||||
*
|
|
||||||
* Defaults to 48 hours. At 0, tokens are purged immediately upon expiry.
|
|
||||||
*/
|
|
||||||
powTokenPurgeHours: number;
|
|
||||||
/**
|
|
||||||
* Maximum number of active temporary user tokens that can be associated with
|
|
||||||
* a single IP address. Note that this may impact users sending requests from
|
|
||||||
* hosted AI chat clients such as Agnaistic or RisuAI, as they may share IPs.
|
|
||||||
*
|
|
||||||
* When the limit is reached, the oldest token with the same IP will be
|
|
||||||
* expired. At 0, no limit is enforced. Defaults to 0.
|
|
||||||
*/
|
|
||||||
// powMaxTokensPerIp: number;
|
|
||||||
/** Per-user limit for requests per minute to text and chat models. */
|
|
||||||
textModelRateLimit: number;
|
textModelRateLimit: number;
|
||||||
/** Per-user limit for requests per minute to image generation models. */
|
/** Per-IP limit for requests per minute to image generation models. */
|
||||||
imageModelRateLimit: number;
|
imageModelRateLimit: number;
|
||||||
/**
|
/**
|
||||||
* For OpenAI, the maximum number of context tokens (prompt + max output) a
|
* For OpenAI, the maximum number of context tokens (prompt + max output) a
|
||||||
@@ -215,38 +146,10 @@ type Config = {
|
|||||||
* key and can't attach the policy, you can set this to true.
|
* key and can't attach the policy, you can set this to true.
|
||||||
*/
|
*/
|
||||||
allowAwsLogging?: boolean;
|
allowAwsLogging?: boolean;
|
||||||
/**
|
|
||||||
* Path to the SQLite database file for storing data such as event logs. By
|
|
||||||
* default, the database will be stored at `data/database.sqlite`.
|
|
||||||
*
|
|
||||||
* Ensure target is writable by the server process, and be careful not to
|
|
||||||
* select a path that is served publicly. The default path is safe.
|
|
||||||
*/
|
|
||||||
sqliteDataPath?: string;
|
|
||||||
/**
|
|
||||||
* Whether to log events, such as generated completions, to the database.
|
|
||||||
* Events are associated with IP+user token pairs. If user_token mode is
|
|
||||||
* disabled, no events will be logged.
|
|
||||||
*
|
|
||||||
* Currently there is no pruning mechanism for the events table, so it will
|
|
||||||
* grow indefinitely. You may want to periodically prune the table manually.
|
|
||||||
*/
|
|
||||||
eventLogging?: boolean;
|
|
||||||
/**
|
|
||||||
* When hashing prompt histories, how many messages to trim from the end.
|
|
||||||
* If zero, only the full prompt hash will be stored.
|
|
||||||
* If greater than zero, for each number N, a hash of the prompt with the
|
|
||||||
* last N messages removed will be stored.
|
|
||||||
*
|
|
||||||
* Experimental function, config may change in future versions.
|
|
||||||
*/
|
|
||||||
eventLoggingTrim?: number;
|
|
||||||
/** Whether prompts and responses should be logged to persistent storage. */
|
/** Whether prompts and responses should be logged to persistent storage. */
|
||||||
promptLogging?: boolean;
|
promptLogging?: boolean;
|
||||||
/** Which prompt logging backend to use. */
|
/** Which prompt logging backend to use. */
|
||||||
promptLoggingBackend?: "google_sheets" | "file";
|
promptLoggingBackend?: "google_sheets";
|
||||||
/** Prefix for prompt logging files when using the file backend. */
|
|
||||||
promptLoggingFilePrefix?: string;
|
|
||||||
/** Base64-encoded Google Sheets API key. */
|
/** Base64-encoded Google Sheets API key. */
|
||||||
googleSheetsKey?: string;
|
googleSheetsKey?: string;
|
||||||
/** Google Sheets spreadsheet ID. */
|
/** Google Sheets spreadsheet ID. */
|
||||||
@@ -346,75 +249,11 @@ type Config = {
|
|||||||
* risk.
|
* risk.
|
||||||
*/
|
*/
|
||||||
allowOpenAIToolUsage?: boolean;
|
allowOpenAIToolUsage?: boolean;
|
||||||
/**
|
|
||||||
* Which services will accept prompts containing images, for use with
|
|
||||||
* multimodal models. Users with `special` role are exempt from this
|
|
||||||
* restriction.
|
|
||||||
*
|
|
||||||
* Do not enable this feature for untrusted users, as malicious users could
|
|
||||||
* send images which violate your provider's terms of service or local laws.
|
|
||||||
*
|
|
||||||
* Defaults to no services, meaning image prompts are disabled. Use a comma-
|
|
||||||
* separated list. Available services are:
|
|
||||||
* openai,anthropic,google-ai,mistral-ai,aws,gcp,azure
|
|
||||||
*/
|
|
||||||
allowedVisionServices: LLMService[];
|
|
||||||
/**
|
/**
|
||||||
* Allows overriding the default proxy endpoint route. Defaults to /proxy.
|
* Allows overriding the default proxy endpoint route. Defaults to /proxy.
|
||||||
* A leading slash is required.
|
* A leading slash is required.
|
||||||
*/
|
*/
|
||||||
proxyEndpointRoute: string;
|
proxyEndpointRoute: string;
|
||||||
/**
|
|
||||||
* If set, only requests from these IP addresses will be permitted to use the
|
|
||||||
* admin API and UI. Provide a comma-separated list of IP addresses or CIDR
|
|
||||||
* ranges. If not set, the admin API and UI will be open to all requests.
|
|
||||||
*/
|
|
||||||
adminWhitelist: string[];
|
|
||||||
/**
|
|
||||||
* If set, requests from these IP addresses will be blocked from using the
|
|
||||||
* application. Provide a comma-separated list of IP addresses or CIDR ranges.
|
|
||||||
* If not set, no IP addresses will be blocked.
|
|
||||||
*
|
|
||||||
* Takes precedence over the adminWhitelist.
|
|
||||||
*/
|
|
||||||
ipBlacklist: string[];
|
|
||||||
/**
|
|
||||||
* If set, pushes requests further back into the queue according to their
|
|
||||||
* token costs by factor*tokens*milliseconds (or more intuitively
|
|
||||||
* factor*thousands_of_tokens*seconds).
|
|
||||||
* Accepts floats.
|
|
||||||
*/
|
|
||||||
tokensPunishmentFactor: number;
|
|
||||||
/**
|
|
||||||
* Configuration for HTTP requests made by the proxy to other servers, such
|
|
||||||
* as when checking keys or forwarding users' requests to external services.
|
|
||||||
* If not set, all requests will be made using the default agent.
|
|
||||||
*
|
|
||||||
* If set, the proxy may make requests to other servers using the specified
|
|
||||||
* settings. This is useful if you wish to route users' requests through
|
|
||||||
* another proxy or VPN, or if you have multiple network interfaces and want
|
|
||||||
* to use a specific one for outgoing requests.
|
|
||||||
*/
|
|
||||||
httpAgent?: {
|
|
||||||
/**
|
|
||||||
* The name of the network interface to use. The first external IPv4 address
|
|
||||||
* belonging to this interface will be used for outgoing requests.
|
|
||||||
*/
|
|
||||||
interface?: string;
|
|
||||||
/**
|
|
||||||
* The URL of a proxy server to use. Supports SOCKS4, SOCKS5, HTTP, and
|
|
||||||
* HTTPS. If not set, the proxy will be made using the default agent.
|
|
||||||
* - SOCKS4: `socks4://some-socks-proxy.com:9050`
|
|
||||||
* - SOCKS5: `socks5://username:password@some-socks-proxy.com:9050`
|
|
||||||
* - HTTP: `http://proxy-server-over-tcp.com:3128`
|
|
||||||
* - HTTPS: `https://proxy-server-over-tls.com:3129`
|
|
||||||
*
|
|
||||||
* **Note:** If your proxy server issues a certificate, you may need to set
|
|
||||||
* `NODE_EXTRA_CA_CERTS` to the path to your certificate, otherwise this
|
|
||||||
* application will reject TLS connections.
|
|
||||||
*/
|
|
||||||
proxyUrl?: string;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// To change configs, create a file called .env in the root directory.
|
// To change configs, create a file called .env in the root directory.
|
||||||
@@ -427,48 +266,49 @@ export const config: Config = {
|
|||||||
googleAIKey: getEnvWithDefault("GOOGLE_AI_KEY", ""),
|
googleAIKey: getEnvWithDefault("GOOGLE_AI_KEY", ""),
|
||||||
mistralAIKey: getEnvWithDefault("MISTRAL_AI_KEY", ""),
|
mistralAIKey: getEnvWithDefault("MISTRAL_AI_KEY", ""),
|
||||||
awsCredentials: getEnvWithDefault("AWS_CREDENTIALS", ""),
|
awsCredentials: getEnvWithDefault("AWS_CREDENTIALS", ""),
|
||||||
gcpCredentials: getEnvWithDefault("GCP_CREDENTIALS", ""),
|
|
||||||
azureCredentials: getEnvWithDefault("AZURE_CREDENTIALS", ""),
|
azureCredentials: getEnvWithDefault("AZURE_CREDENTIALS", ""),
|
||||||
proxyKey: getEnvWithDefault("PROXY_KEY", ""),
|
proxyKey: getEnvWithDefault("PROXY_KEY", ""),
|
||||||
adminKey: getEnvWithDefault("ADMIN_KEY", ""),
|
adminKey: getEnvWithDefault("ADMIN_KEY", ""),
|
||||||
serviceInfoPassword: getEnvWithDefault("SERVICE_INFO_PASSWORD", ""),
|
serviceInfoPassword: getEnvWithDefault("SERVICE_INFO_PASSWORD", ""),
|
||||||
sqliteDataPath: getEnvWithDefault(
|
|
||||||
"SQLITE_DATA_PATH",
|
|
||||||
path.join(DATA_DIR, "database.sqlite")
|
|
||||||
),
|
|
||||||
eventLogging: getEnvWithDefault("EVENT_LOGGING", false),
|
|
||||||
eventLoggingTrim: getEnvWithDefault("EVENT_LOGGING_TRIM", 5),
|
|
||||||
gatekeeper: getEnvWithDefault("GATEKEEPER", "none"),
|
gatekeeper: getEnvWithDefault("GATEKEEPER", "none"),
|
||||||
gatekeeperStore: getEnvWithDefault("GATEKEEPER_STORE", "memory"),
|
gatekeeperStore: getEnvWithDefault("GATEKEEPER_STORE", "memory"),
|
||||||
maxIpsPerUser: getEnvWithDefault("MAX_IPS_PER_USER", 0),
|
maxIpsPerUser: getEnvWithDefault("MAX_IPS_PER_USER", 0),
|
||||||
maxIpsAutoBan: getEnvWithDefault("MAX_IPS_AUTO_BAN", false),
|
maxIpsAutoBan: getEnvWithDefault("MAX_IPS_AUTO_BAN", true),
|
||||||
captchaMode: getEnvWithDefault("CAPTCHA_MODE", "none"),
|
|
||||||
powTokenHours: getEnvWithDefault("POW_TOKEN_HOURS", 24),
|
|
||||||
powTokenMaxIps: getEnvWithDefault("POW_TOKEN_MAX_IPS", 2),
|
|
||||||
powDifficultyLevel: getEnvWithDefault("POW_DIFFICULTY_LEVEL", "low"),
|
|
||||||
powChallengeTimeout: getEnvWithDefault("POW_CHALLENGE_TIMEOUT", 30),
|
|
||||||
powTokenPurgeHours: getEnvWithDefault("POW_TOKEN_PURGE_HOURS", 48),
|
|
||||||
firebaseRtdbUrl: getEnvWithDefault("FIREBASE_RTDB_URL", undefined),
|
firebaseRtdbUrl: getEnvWithDefault("FIREBASE_RTDB_URL", undefined),
|
||||||
firebaseKey: getEnvWithDefault("FIREBASE_KEY", undefined),
|
firebaseKey: getEnvWithDefault("FIREBASE_KEY", undefined),
|
||||||
textModelRateLimit: getEnvWithDefault("TEXT_MODEL_RATE_LIMIT", 4),
|
textModelRateLimit: getEnvWithDefault("TEXT_MODEL_RATE_LIMIT", 4),
|
||||||
imageModelRateLimit: getEnvWithDefault("IMAGE_MODEL_RATE_LIMIT", 4),
|
imageModelRateLimit: getEnvWithDefault("IMAGE_MODEL_RATE_LIMIT", 4),
|
||||||
maxContextTokensOpenAI: getEnvWithDefault("MAX_CONTEXT_TOKENS_OPENAI", 32768),
|
maxContextTokensOpenAI: getEnvWithDefault("MAX_CONTEXT_TOKENS_OPENAI", 16384),
|
||||||
maxContextTokensAnthropic: getEnvWithDefault(
|
maxContextTokensAnthropic: getEnvWithDefault(
|
||||||
"MAX_CONTEXT_TOKENS_ANTHROPIC",
|
"MAX_CONTEXT_TOKENS_ANTHROPIC",
|
||||||
32768
|
0
|
||||||
),
|
),
|
||||||
maxOutputTokensOpenAI: getEnvWithDefault(
|
maxOutputTokensOpenAI: getEnvWithDefault(
|
||||||
["MAX_OUTPUT_TOKENS_OPENAI", "MAX_OUTPUT_TOKENS"],
|
["MAX_OUTPUT_TOKENS_OPENAI", "MAX_OUTPUT_TOKENS"],
|
||||||
1024
|
400
|
||||||
),
|
),
|
||||||
maxOutputTokensAnthropic: getEnvWithDefault(
|
maxOutputTokensAnthropic: getEnvWithDefault(
|
||||||
["MAX_OUTPUT_TOKENS_ANTHROPIC", "MAX_OUTPUT_TOKENS"],
|
["MAX_OUTPUT_TOKENS_ANTHROPIC", "MAX_OUTPUT_TOKENS"],
|
||||||
1024
|
400
|
||||||
),
|
|
||||||
allowedModelFamilies: getEnvWithDefault(
|
|
||||||
"ALLOWED_MODEL_FAMILIES",
|
|
||||||
getDefaultModelFamilies()
|
|
||||||
),
|
),
|
||||||
|
allowedModelFamilies: getEnvWithDefault("ALLOWED_MODEL_FAMILIES", [
|
||||||
|
"turbo",
|
||||||
|
"gpt4",
|
||||||
|
"gpt4-32k",
|
||||||
|
"gpt4-turbo",
|
||||||
|
"claude",
|
||||||
|
"claude-opus",
|
||||||
|
"gemini-pro",
|
||||||
|
"mistral-tiny",
|
||||||
|
"mistral-small",
|
||||||
|
"mistral-medium",
|
||||||
|
"mistral-large",
|
||||||
|
"aws-claude",
|
||||||
|
"azure-turbo",
|
||||||
|
"azure-gpt4",
|
||||||
|
"azure-gpt4-turbo",
|
||||||
|
"azure-gpt4-32k",
|
||||||
|
]),
|
||||||
rejectPhrases: parseCsv(getEnvWithDefault("REJECT_PHRASES", "")),
|
rejectPhrases: parseCsv(getEnvWithDefault("REJECT_PHRASES", "")),
|
||||||
rejectMessage: getEnvWithDefault(
|
rejectMessage: getEnvWithDefault(
|
||||||
"REJECT_MESSAGE",
|
"REJECT_MESSAGE",
|
||||||
@@ -480,10 +320,6 @@ export const config: Config = {
|
|||||||
allowAwsLogging: getEnvWithDefault("ALLOW_AWS_LOGGING", false),
|
allowAwsLogging: getEnvWithDefault("ALLOW_AWS_LOGGING", false),
|
||||||
promptLogging: getEnvWithDefault("PROMPT_LOGGING", false),
|
promptLogging: getEnvWithDefault("PROMPT_LOGGING", false),
|
||||||
promptLoggingBackend: getEnvWithDefault("PROMPT_LOGGING_BACKEND", undefined),
|
promptLoggingBackend: getEnvWithDefault("PROMPT_LOGGING_BACKEND", undefined),
|
||||||
promptLoggingFilePrefix: getEnvWithDefault(
|
|
||||||
"PROMPT_LOGGING_FILE_PREFIX",
|
|
||||||
"prompt-logs"
|
|
||||||
),
|
|
||||||
googleSheetsKey: getEnvWithDefault("GOOGLE_SHEETS_KEY", undefined),
|
googleSheetsKey: getEnvWithDefault("GOOGLE_SHEETS_KEY", undefined),
|
||||||
googleSheetsSpreadsheetId: getEnvWithDefault(
|
googleSheetsSpreadsheetId: getEnvWithDefault(
|
||||||
"GOOGLE_SHEETS_SPREADSHEET_ID",
|
"GOOGLE_SHEETS_SPREADSHEET_ID",
|
||||||
@@ -512,56 +348,20 @@ export const config: Config = {
|
|||||||
staticServiceInfo: getEnvWithDefault("STATIC_SERVICE_INFO", false),
|
staticServiceInfo: getEnvWithDefault("STATIC_SERVICE_INFO", false),
|
||||||
trustedProxies: getEnvWithDefault("TRUSTED_PROXIES", 1),
|
trustedProxies: getEnvWithDefault("TRUSTED_PROXIES", 1),
|
||||||
allowOpenAIToolUsage: getEnvWithDefault("ALLOW_OPENAI_TOOL_USAGE", false),
|
allowOpenAIToolUsage: getEnvWithDefault("ALLOW_OPENAI_TOOL_USAGE", false),
|
||||||
allowedVisionServices: parseCsv(
|
|
||||||
getEnvWithDefault("ALLOWED_VISION_SERVICES", "")
|
|
||||||
) as LLMService[],
|
|
||||||
proxyEndpointRoute: getEnvWithDefault("PROXY_ENDPOINT_ROUTE", "/proxy"),
|
proxyEndpointRoute: getEnvWithDefault("PROXY_ENDPOINT_ROUTE", "/proxy"),
|
||||||
adminWhitelist: parseCsv(
|
|
||||||
getEnvWithDefault("ADMIN_WHITELIST", "0.0.0.0/0,::/0")
|
|
||||||
),
|
|
||||||
ipBlacklist: parseCsv(getEnvWithDefault("IP_BLACKLIST", "")),
|
|
||||||
tokensPunishmentFactor: getEnvWithDefault("TOKENS_PUNISHMENT_FACTOR", 0.0),
|
|
||||||
httpAgent: {
|
|
||||||
interface: getEnvWithDefault("HTTP_AGENT_INTERFACE", undefined),
|
|
||||||
proxyUrl: getEnvWithDefault("HTTP_AGENT_PROXY_URL", undefined),
|
|
||||||
},
|
|
||||||
} as const;
|
} as const;
|
||||||
|
|
||||||
function generateSigningKey() {
|
function generateCookieSecret() {
|
||||||
if (process.env.COOKIE_SECRET !== undefined) {
|
if (process.env.COOKIE_SECRET !== undefined) {
|
||||||
// legacy, replaced by SIGNING_KEY
|
|
||||||
return process.env.COOKIE_SECRET;
|
return process.env.COOKIE_SECRET;
|
||||||
} else if (process.env.SIGNING_KEY !== undefined) {
|
|
||||||
return process.env.SIGNING_KEY;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const secrets = [
|
const seed = "" + config.adminKey + config.openaiKey + config.anthropicKey;
|
||||||
config.adminKey,
|
const crypto = require("crypto");
|
||||||
config.openaiKey,
|
|
||||||
config.anthropicKey,
|
|
||||||
config.googleAIKey,
|
|
||||||
config.mistralAIKey,
|
|
||||||
config.awsCredentials,
|
|
||||||
config.gcpCredentials,
|
|
||||||
config.azureCredentials,
|
|
||||||
];
|
|
||||||
if (secrets.filter((s) => s).length === 0) {
|
|
||||||
startupLogger.warn(
|
|
||||||
"No SIGNING_KEY or secrets are set. All sessions, cookies, and proofs of work will be invalidated on restart."
|
|
||||||
);
|
|
||||||
return crypto.randomBytes(32).toString("hex");
|
|
||||||
}
|
|
||||||
|
|
||||||
startupLogger.info("No SIGNING_KEY set; one will be generated from secrets.");
|
|
||||||
startupLogger.info(
|
|
||||||
"It's recommended to set SIGNING_KEY explicitly to ensure users' sessions and cookies always persist across restarts."
|
|
||||||
);
|
|
||||||
const seed = secrets.map((s) => s || "n/a").join("");
|
|
||||||
return crypto.createHash("sha256").update(seed).digest("hex");
|
return crypto.createHash("sha256").update(seed).digest("hex");
|
||||||
}
|
}
|
||||||
|
|
||||||
const signingKey = generateSigningKey();
|
export const COOKIE_SECRET = generateCookieSecret();
|
||||||
export const SECRET_SIGNING_KEY = signingKey;
|
|
||||||
|
|
||||||
export async function assertConfigIsValid() {
|
export async function assertConfigIsValid() {
|
||||||
if (process.env.MODEL_RATE_LIMIT !== undefined) {
|
if (process.env.MODEL_RATE_LIMIT !== undefined) {
|
||||||
@@ -577,23 +377,6 @@ export async function assertConfigIsValid() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (process.env.ALLOW_IMAGE_PROMPTS === "true") {
|
|
||||||
const hasAllowedServices = config.allowedVisionServices.length > 0;
|
|
||||||
if (!hasAllowedServices) {
|
|
||||||
config.allowedVisionServices = ["openai", "anthropic"];
|
|
||||||
startupLogger.warn(
|
|
||||||
{ allowedVisionServices: config.allowedVisionServices },
|
|
||||||
"ALLOW_IMAGE_PROMPTS is deprecated. Use ALLOWED_VISION_SERVICES instead."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (config.promptLogging && !config.promptLoggingBackend) {
|
|
||||||
throw new Error(
|
|
||||||
"Prompt logging is enabled but no backend is configured. Set PROMPT_LOGGING_BACKEND to 'google_sheets' or 'file'."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!["none", "proxy_key", "user_token"].includes(config.gatekeeper)) {
|
if (!["none", "proxy_key", "user_token"].includes(config.gatekeeper)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Invalid gatekeeper mode: ${config.gatekeeper}. Must be one of: none, proxy_key, user_token.`
|
`Invalid gatekeeper mode: ${config.gatekeeper}. Must be one of: none, proxy_key, user_token.`
|
||||||
@@ -606,35 +389,18 @@ export async function assertConfigIsValid() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
|
||||||
config.captchaMode === "proof_of_work" &&
|
|
||||||
config.gatekeeper !== "user_token"
|
|
||||||
) {
|
|
||||||
throw new Error(
|
|
||||||
"Captcha mode 'proof_of_work' requires gatekeeper mode 'user_token'."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (config.captchaMode === "proof_of_work") {
|
|
||||||
const val = config.powDifficultyLevel;
|
|
||||||
const isDifficulty =
|
|
||||||
typeof val === "string" &&
|
|
||||||
["low", "medium", "high", "extreme"].includes(val);
|
|
||||||
const isIterations =
|
|
||||||
typeof val === "number" && Number.isInteger(val) && val > 0;
|
|
||||||
if (!isDifficulty && !isIterations) {
|
|
||||||
throw new Error(
|
|
||||||
"Invalid POW_DIFFICULTY_LEVEL. Must be one of: low, medium, high, extreme, or a positive integer."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (config.gatekeeper === "proxy_key" && !config.proxyKey) {
|
if (config.gatekeeper === "proxy_key" && !config.proxyKey) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"`proxy_key` gatekeeper mode requires a `PROXY_KEY` to be set."
|
"`proxy_key` gatekeeper mode requires a `PROXY_KEY` to be set."
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (config.gatekeeper !== "proxy_key" && config.proxyKey) {
|
||||||
|
throw new Error(
|
||||||
|
"`PROXY_KEY` is set, but gatekeeper mode is not `proxy_key`. Make sure to set `GATEKEEPER=proxy_key`."
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
config.gatekeeperStore === "firebase_rtdb" &&
|
config.gatekeeperStore === "firebase_rtdb" &&
|
||||||
(!config.firebaseKey || !config.firebaseRtdbUrl)
|
(!config.firebaseKey || !config.firebaseRtdbUrl)
|
||||||
@@ -644,16 +410,6 @@ export async function assertConfigIsValid() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Object.values(config.httpAgent || {}).filter(Boolean).length === 0) {
|
|
||||||
delete config.httpAgent;
|
|
||||||
} else if (config.httpAgent) {
|
|
||||||
if (config.httpAgent.interface && config.httpAgent.proxyUrl) {
|
|
||||||
throw new Error(
|
|
||||||
"Cannot set both `HTTP_AGENT_INTERFACE` and `HTTP_AGENT_PROXY_URL`."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure forks which add new secret-like config keys don't unwittingly expose
|
// Ensure forks which add new secret-like config keys don't unwittingly expose
|
||||||
// them to users.
|
// them to users.
|
||||||
for (const key of getKeys(config)) {
|
for (const key of getKeys(config)) {
|
||||||
@@ -667,16 +423,15 @@ export async function assertConfigIsValid() {
|
|||||||
`Config key "${key}" may be sensitive but is exposed. Add it to SENSITIVE_KEYS or OMITTED_KEYS.`
|
`Config key "${key}" may be sensitive but is exposed. Add it to SENSITIVE_KEYS or OMITTED_KEYS.`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
await maybeInitializeFirebase();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Config keys that are masked on the info page, but not hidden as their
|
* Config keys that are masked on the info page, but not hidden as their
|
||||||
* presence may be relevant to the user due to privacy implications.
|
* presence may be relevant to the user due to privacy implications.
|
||||||
*/
|
*/
|
||||||
export const SENSITIVE_KEYS: (keyof Config)[] = [
|
export const SENSITIVE_KEYS: (keyof Config)[] = ["googleSheetsSpreadsheetId"];
|
||||||
"googleSheetsSpreadsheetId",
|
|
||||||
"httpAgent",
|
|
||||||
];
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Config keys that are not displayed on the info page at all, generally because
|
* Config keys that are not displayed on the info page at all, generally because
|
||||||
@@ -691,7 +446,6 @@ export const OMITTED_KEYS = [
|
|||||||
"googleAIKey",
|
"googleAIKey",
|
||||||
"mistralAIKey",
|
"mistralAIKey",
|
||||||
"awsCredentials",
|
"awsCredentials",
|
||||||
"gcpCredentials",
|
|
||||||
"azureCredentials",
|
"azureCredentials",
|
||||||
"proxyKey",
|
"proxyKey",
|
||||||
"adminKey",
|
"adminKey",
|
||||||
@@ -699,13 +453,9 @@ export const OMITTED_KEYS = [
|
|||||||
"rejectPhrases",
|
"rejectPhrases",
|
||||||
"rejectMessage",
|
"rejectMessage",
|
||||||
"showTokenCosts",
|
"showTokenCosts",
|
||||||
"promptLoggingFilePrefix",
|
|
||||||
"googleSheetsKey",
|
"googleSheetsKey",
|
||||||
"firebaseKey",
|
"firebaseKey",
|
||||||
"firebaseRtdbUrl",
|
"firebaseRtdbUrl",
|
||||||
"sqliteDataPath",
|
|
||||||
"eventLogging",
|
|
||||||
"eventLoggingTrim",
|
|
||||||
"gatekeeperStore",
|
"gatekeeperStore",
|
||||||
"maxIpsPerUser",
|
"maxIpsPerUser",
|
||||||
"blockedOrigins",
|
"blockedOrigins",
|
||||||
@@ -719,9 +469,6 @@ export const OMITTED_KEYS = [
|
|||||||
"allowedModelFamilies",
|
"allowedModelFamilies",
|
||||||
"trustedProxies",
|
"trustedProxies",
|
||||||
"proxyEndpointRoute",
|
"proxyEndpointRoute",
|
||||||
"adminWhitelist",
|
|
||||||
"ipBlacklist",
|
|
||||||
"powTokenPurgeHours",
|
|
||||||
] satisfies (keyof Config)[];
|
] satisfies (keyof Config)[];
|
||||||
type OmitKeys = (typeof OMITTED_KEYS)[number];
|
type OmitKeys = (typeof OMITTED_KEYS)[number];
|
||||||
|
|
||||||
@@ -782,7 +529,6 @@ function getEnvWithDefault<T>(env: string | string[], defaultValue: T): T {
|
|||||||
"ANTHROPIC_KEY",
|
"ANTHROPIC_KEY",
|
||||||
"GOOGLE_AI_KEY",
|
"GOOGLE_AI_KEY",
|
||||||
"AWS_CREDENTIALS",
|
"AWS_CREDENTIALS",
|
||||||
"GCP_CREDENTIALS",
|
|
||||||
"AZURE_CREDENTIALS",
|
"AZURE_CREDENTIALS",
|
||||||
].includes(String(env))
|
].includes(String(env))
|
||||||
) {
|
) {
|
||||||
@@ -800,6 +546,32 @@ function getEnvWithDefault<T>(env: string | string[], defaultValue: T): T {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let firebaseApp: firebase.app.App | undefined;
|
||||||
|
|
||||||
|
async function maybeInitializeFirebase() {
|
||||||
|
if (!config.gatekeeperStore.startsWith("firebase")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const firebase = await import("firebase-admin");
|
||||||
|
const firebaseKey = Buffer.from(config.firebaseKey!, "base64").toString();
|
||||||
|
const app = firebase.initializeApp({
|
||||||
|
credential: firebase.credential.cert(JSON.parse(firebaseKey)),
|
||||||
|
databaseURL: config.firebaseRtdbUrl,
|
||||||
|
});
|
||||||
|
|
||||||
|
await app.database().ref("connection-test").set(Date.now());
|
||||||
|
|
||||||
|
firebaseApp = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getFirebaseApp(): firebase.app.App {
|
||||||
|
if (!firebaseApp) {
|
||||||
|
throw new Error("Firebase app not initialized.");
|
||||||
|
}
|
||||||
|
return firebaseApp;
|
||||||
|
}
|
||||||
|
|
||||||
function parseCsv(val: string): string[] {
|
function parseCsv(val: string): string[] {
|
||||||
if (!val) return [];
|
if (!val) return [];
|
||||||
|
|
||||||
@@ -807,9 +579,3 @@ function parseCsv(val: string): string[] {
|
|||||||
const matches = val.match(regex) || [];
|
const matches = val.match(regex) || [];
|
||||||
return matches.map((item) => item.replace(/^"|"$/g, "").trim());
|
return matches.map((item) => item.replace(/^"|"$/g, "").trim());
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDefaultModelFamilies(): ModelFamily[] {
|
|
||||||
return MODEL_FAMILIES.filter(
|
|
||||||
(f) => !f.includes("dall-e") && !f.includes("o1")
|
|
||||||
) as ModelFamily[];
|
|
||||||
}
|
|
||||||
|
|||||||
+18
-49
@@ -12,44 +12,29 @@ import { checkCsrfToken, injectCsrfToken } from "./shared/inject-csrf";
|
|||||||
|
|
||||||
const INFO_PAGE_TTL = 2000;
|
const INFO_PAGE_TTL = 2000;
|
||||||
const MODEL_FAMILY_FRIENDLY_NAME: { [f in ModelFamily]: string } = {
|
const MODEL_FAMILY_FRIENDLY_NAME: { [f in ModelFamily]: string } = {
|
||||||
turbo: "GPT-4o Mini / 3.5 Turbo",
|
turbo: "GPT-3.5 Turbo",
|
||||||
gpt4: "GPT-4",
|
gpt4: "GPT-4",
|
||||||
"gpt4-32k": "GPT-4 32k",
|
"gpt4-32k": "GPT-4 32k",
|
||||||
"gpt4-turbo": "GPT-4 Turbo",
|
"gpt4-turbo": "GPT-4 Turbo",
|
||||||
gpt4o: "GPT-4o",
|
|
||||||
o1: "OpenAI o1",
|
|
||||||
"o1-mini": "OpenAI o1 mini",
|
|
||||||
"dall-e": "DALL-E",
|
"dall-e": "DALL-E",
|
||||||
claude: "Claude (Sonnet)",
|
claude: "Claude (Sonnet)",
|
||||||
"claude-opus": "Claude (Opus)",
|
"claude-opus": "Claude (Opus)",
|
||||||
"gemini-flash": "Gemini Flash",
|
|
||||||
"gemini-pro": "Gemini Pro",
|
"gemini-pro": "Gemini Pro",
|
||||||
"gemini-ultra": "Gemini Ultra",
|
|
||||||
"mistral-tiny": "Mistral 7B",
|
"mistral-tiny": "Mistral 7B",
|
||||||
"mistral-small": "Mistral Nemo",
|
"mistral-small": "Mixtral Small", // Originally 8x7B, but that now refers to the older open-weight version. Mixtral Small is a newer closed-weight update to the 8x7B model.
|
||||||
"mistral-medium": "Mistral Medium",
|
"mistral-medium": "Mistral Medium",
|
||||||
"mistral-large": "Mistral Large",
|
"mistral-large": "Mistral Large",
|
||||||
"aws-claude": "AWS Claude (Sonnet)",
|
"aws-claude": "AWS Claude (Sonnet)",
|
||||||
"aws-claude-opus": "AWS Claude (Opus)",
|
|
||||||
"aws-mistral-tiny": "AWS Mistral 7B",
|
|
||||||
"aws-mistral-small": "AWS Mistral Nemo",
|
|
||||||
"aws-mistral-medium": "AWS Mistral Medium",
|
|
||||||
"aws-mistral-large": "AWS Mistral Large",
|
|
||||||
"gcp-claude": "GCP Claude (Sonnet)",
|
|
||||||
"gcp-claude-opus": "GCP Claude (Opus)",
|
|
||||||
"azure-turbo": "Azure GPT-3.5 Turbo",
|
"azure-turbo": "Azure GPT-3.5 Turbo",
|
||||||
"azure-gpt4": "Azure GPT-4",
|
"azure-gpt4": "Azure GPT-4",
|
||||||
"azure-gpt4-32k": "Azure GPT-4 32k",
|
"azure-gpt4-32k": "Azure GPT-4 32k",
|
||||||
"azure-gpt4-turbo": "Azure GPT-4 Turbo",
|
"azure-gpt4-turbo": "Azure GPT-4 Turbo",
|
||||||
"azure-gpt4o": "Azure GPT-4o",
|
|
||||||
"azure-o1": "Azure o1",
|
|
||||||
"azure-o1-mini": "Azure o1 mini",
|
|
||||||
"azure-dall-e": "Azure DALL-E",
|
"azure-dall-e": "Azure DALL-E",
|
||||||
};
|
};
|
||||||
|
|
||||||
const converter = new showdown.Converter();
|
const converter = new showdown.Converter();
|
||||||
const customGreeting = fs.existsSync("greeting.md")
|
const customGreeting = fs.existsSync("greeting.md")
|
||||||
? `<div id="servergreeting">${fs.readFileSync("greeting.md", "utf8")}</div>`
|
? `\n## Server Greeting\n${fs.readFileSync("greeting.md", "utf8")}`
|
||||||
: "";
|
: "";
|
||||||
let infoPageHtml: string | undefined;
|
let infoPageHtml: string | undefined;
|
||||||
let infoPageLastUpdated = 0;
|
let infoPageLastUpdated = 0;
|
||||||
@@ -75,42 +60,36 @@ export function renderPage(info: ServiceInfo) {
|
|||||||
const title = getServerTitle();
|
const title = getServerTitle();
|
||||||
const headerHtml = buildInfoPageHeader(info);
|
const headerHtml = buildInfoPageHeader(info);
|
||||||
|
|
||||||
return `<!doctype html>
|
return `<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="robots" content="noindex" />
|
<meta name="robots" content="noindex" />
|
||||||
<title>${title}</title>
|
<title>${title}</title>
|
||||||
<link rel="stylesheet" href="/res/css/reset.css" media="screen" />
|
|
||||||
<link rel="stylesheet" href="/res/css/sakura.css" media="screen" />
|
|
||||||
<link rel="stylesheet" href="/res/css/sakura-dark.css" media="screen and (prefers-color-scheme: dark)" />
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
|
background-color: #f0f0f0;
|
||||||
padding: 1em;
|
padding: 1em;
|
||||||
max-width: 900px;
|
|
||||||
margin: 0;
|
|
||||||
}
|
}
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
.self-service-links {
|
body {
|
||||||
display: flex;
|
background-color: #222;
|
||||||
justify-content: center;
|
color: #eee;
|
||||||
margin-bottom: 1em;
|
}
|
||||||
padding: 0.5em;
|
|
||||||
font-size: 0.8em;
|
a:link, a:visited {
|
||||||
}
|
color: #bbe;
|
||||||
|
}
|
||||||
.self-service-links a {
|
|
||||||
margin: 0 0.5em;
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
${headerHtml}
|
${headerHtml}
|
||||||
<hr />
|
<hr />
|
||||||
${getSelfServiceLinks()}
|
|
||||||
<h2>Service Info</h2>
|
<h2>Service Info</h2>
|
||||||
<pre>${JSON.stringify(info, null, 2)}</pre>
|
<pre>${JSON.stringify(info, null, 2)}</pre>
|
||||||
|
${getSelfServiceLinks()}
|
||||||
</body>
|
</body>
|
||||||
</html>`;
|
</html>`;
|
||||||
}
|
}
|
||||||
@@ -164,15 +143,7 @@ This proxy keeps full logs of all prompts and AI responses. Prompt logs are anon
|
|||||||
|
|
||||||
function getSelfServiceLinks() {
|
function getSelfServiceLinks() {
|
||||||
if (config.gatekeeper !== "user_token") return "";
|
if (config.gatekeeper !== "user_token") return "";
|
||||||
|
return `<footer style="font-size: 0.8em;"><hr /><a target="_blank" href="/user/lookup">Check your user token info</a></footer>`;
|
||||||
const links = [["Check your user token", "/user/lookup"]];
|
|
||||||
if (config.captchaMode !== "none") {
|
|
||||||
links.unshift(["Request a user token", "/user/captcha"]);
|
|
||||||
}
|
|
||||||
|
|
||||||
return `<div class="self-service-links">${links
|
|
||||||
.map(([text, link]) => `<a href="${link}">${text}</a>`)
|
|
||||||
.join(" | ")}</div>`;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getServerTitle() {
|
function getServerTitle() {
|
||||||
@@ -219,7 +190,7 @@ function buildRecentImageSection() {
|
|||||||
</div>`;
|
</div>`;
|
||||||
}
|
}
|
||||||
html += `</div>`;
|
html += `</div>`;
|
||||||
html += `<p style="clear: both; text-align: center;"><a href="/user/image-history">View all recent images</a></p>`;
|
html += `<p style="clear: both; text-align: center;"><a href="/user/image-history">View all recent images</a></p>`
|
||||||
|
|
||||||
return html;
|
return html;
|
||||||
}
|
}
|
||||||
@@ -230,9 +201,7 @@ function escapeHtml(unsafe: string) {
|
|||||||
.replace(/</g, "<")
|
.replace(/</g, "<")
|
||||||
.replace(/>/g, ">")
|
.replace(/>/g, ">")
|
||||||
.replace(/"/g, """)
|
.replace(/"/g, """)
|
||||||
.replace(/'/g, "'")
|
.replace(/'/g, "'");
|
||||||
.replace(/\[/g, "[")
|
|
||||||
.replace(/]/g, "]");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getExternalUrlForHuggingfaceSpaceId(spaceId: string) {
|
function getExternalUrlForHuggingfaceSpaceId(spaceId: string) {
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
import { NextFunction, Request, Response } from "express";
|
|
||||||
|
|
||||||
export function addV1(req: Request, res: Response, next: NextFunction) {
|
|
||||||
// Clients don't consistently use the /v1 prefix so we'll add it for them.
|
|
||||||
if (!req.path.startsWith("/v1/") && !req.path.startsWith("/v1beta/")) {
|
|
||||||
req.url = `/v1${req.url}`;
|
|
||||||
}
|
|
||||||
next();
|
|
||||||
}
|
|
||||||
+118
-63
@@ -1,14 +1,22 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
import { Request, Response, RequestHandler, Router } from "express";
|
||||||
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
|
import { logger } from "../logger";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
addKey,
|
addKey,
|
||||||
|
addAnthropicPreamble,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeBody,
|
finalizeBody,
|
||||||
|
createOnProxyReqHandler,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
ProxyResHandlerWithBody,
|
||||||
import { ProxyReqManager } from "./middleware/request/proxy-req-manager";
|
createOnProxyResHandler,
|
||||||
|
} from "./middleware/response";
|
||||||
|
import { sendErrorToClient } from "./middleware/response/error-generator";
|
||||||
|
|
||||||
let modelsCache: any = null;
|
let modelsCache: any = null;
|
||||||
let modelsCacheTime = 0;
|
let modelsCacheTime = 0;
|
||||||
@@ -36,13 +44,8 @@ const getModelsResponse = () => {
|
|||||||
"claude-2.0",
|
"claude-2.0",
|
||||||
"claude-2.1",
|
"claude-2.1",
|
||||||
"claude-3-haiku-20240307",
|
"claude-3-haiku-20240307",
|
||||||
"claude-3-5-haiku-20241022",
|
|
||||||
"claude-3-opus-20240229",
|
"claude-3-opus-20240229",
|
||||||
"claude-3-opus-latest",
|
|
||||||
"claude-3-sonnet-20240229",
|
"claude-3-sonnet-20240229",
|
||||||
"claude-3-5-sonnet-20240620",
|
|
||||||
"claude-3-5-sonnet-20241022",
|
|
||||||
"claude-3-5-sonnet-latest",
|
|
||||||
];
|
];
|
||||||
|
|
||||||
const models = claudeVariants.map((id) => ({
|
const models = claudeVariants.map((id) => ({
|
||||||
@@ -65,7 +68,8 @@ const handleModelRequest: RequestHandler = (_req, res) => {
|
|||||||
res.status(200).json(getModelsResponse());
|
res.status(200).json(getModelsResponse());
|
||||||
};
|
};
|
||||||
|
|
||||||
const anthropicBlockingResponseHandler: ProxyResHandlerWithBody = async (
|
/** Only used for non-streaming requests. */
|
||||||
|
const anthropicResponseHandler: ProxyResHandlerWithBody = async (
|
||||||
_proxyRes,
|
_proxyRes,
|
||||||
req,
|
req,
|
||||||
res,
|
res,
|
||||||
@@ -118,6 +122,12 @@ export function transformAnthropicChatResponseToAnthropicText(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transforms a model response from the Anthropic API to match those from the
|
||||||
|
* OpenAI API, for users using Claude via the OpenAI-compatible endpoint. This
|
||||||
|
* is only used for non-streaming requests as streaming requests are handled
|
||||||
|
* on-the-fly.
|
||||||
|
*/
|
||||||
function transformAnthropicTextResponseToOpenAI(
|
function transformAnthropicTextResponseToOpenAI(
|
||||||
anthropicBody: Record<string, any>,
|
anthropicBody: Record<string, any>,
|
||||||
req: Request
|
req: Request
|
||||||
@@ -146,7 +156,7 @@ function transformAnthropicTextResponseToOpenAI(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export function transformAnthropicChatResponseToOpenAI(
|
function transformAnthropicChatResponseToOpenAI(
|
||||||
anthropicBody: Record<string, any>
|
anthropicBody: Record<string, any>
|
||||||
): Record<string, any> {
|
): Record<string, any> {
|
||||||
return {
|
return {
|
||||||
@@ -168,59 +178,40 @@ export function transformAnthropicChatResponseToOpenAI(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
const anthropicProxy = createQueueMiddleware({
|
||||||
* If a client using the OpenAI compatibility endpoint requests an actual OpenAI
|
proxyMiddleware: createProxyMiddleware({
|
||||||
* model, reassigns it to Sonnet.
|
target: "https://api.anthropic.com",
|
||||||
*/
|
changeOrigin: true,
|
||||||
function maybeReassignModel(req: Request) {
|
selfHandleResponse: true,
|
||||||
const model = req.body.model;
|
logger,
|
||||||
if (model.includes("claude")) return; // use whatever model the user requested
|
on: {
|
||||||
req.body.model = "claude-3-5-sonnet-latest";
|
proxyReq: createOnProxyReqHandler({
|
||||||
}
|
pipeline: [addKey, addAnthropicPreamble, finalizeBody],
|
||||||
|
}),
|
||||||
/**
|
proxyRes: createOnProxyResHandler([anthropicResponseHandler]),
|
||||||
* If client requests more than 4096 output tokens the request must have a
|
error: handleProxyError,
|
||||||
* particular version header.
|
},
|
||||||
* https://docs.anthropic.com/en/release-notes/api#july-15th-2024
|
// Abusing pathFilter to rewrite the paths dynamically.
|
||||||
*/
|
pathFilter: (pathname, req) => {
|
||||||
function setAnthropicBetaHeader(req: Request) {
|
const isText = req.outboundApi === "anthropic-text";
|
||||||
const { max_tokens_to_sample } = req.body;
|
const isChat = req.outboundApi === "anthropic-chat";
|
||||||
if (max_tokens_to_sample > 4096) {
|
if (isChat && pathname === "/v1/complete") {
|
||||||
req.headers["anthropic-beta"] = "max-tokens-3-5-sonnet-2024-07-15";
|
req.url = "/v1/messages";
|
||||||
}
|
}
|
||||||
}
|
if (isText && pathname === "/v1/chat/completions") {
|
||||||
|
req.url = "/v1/complete";
|
||||||
function selectUpstreamPath(manager: ProxyReqManager) {
|
}
|
||||||
const req = manager.request;
|
if (isChat && pathname === "/v1/chat/completions") {
|
||||||
const pathname = req.url.split("?")[0];
|
req.url = "/v1/messages";
|
||||||
req.log.debug({ pathname }, "Anthropic path filter");
|
}
|
||||||
const isText = req.outboundApi === "anthropic-text";
|
if (isChat && ["sonnet", "opus"].includes(req.params.type)) {
|
||||||
const isChat = req.outboundApi === "anthropic-chat";
|
req.url = "/v1/messages";
|
||||||
if (isChat && pathname === "/v1/complete") {
|
}
|
||||||
manager.setPath("/v1/messages");
|
return true;
|
||||||
}
|
},
|
||||||
if (isText && pathname === "/v1/chat/completions") {
|
}),
|
||||||
manager.setPath("/v1/complete");
|
|
||||||
}
|
|
||||||
if (isChat && pathname === "/v1/chat/completions") {
|
|
||||||
manager.setPath("/v1/messages");
|
|
||||||
}
|
|
||||||
if (isChat && ["sonnet", "opus"].includes(req.params.type)) {
|
|
||||||
manager.setPath("/v1/messages");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const anthropicProxy = createQueuedProxyMiddleware({
|
|
||||||
target: "https://api.anthropic.com",
|
|
||||||
mutations: [selectUpstreamPath, addKey, finalizeBody],
|
|
||||||
blockingResponseHandler: anthropicBlockingResponseHandler,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const nativeAnthropicChatPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "anthropic-chat", outApi: "anthropic-chat", service: "anthropic" },
|
|
||||||
{ afterTransform: [setAnthropicBetaHeader] }
|
|
||||||
);
|
|
||||||
|
|
||||||
const nativeTextPreprocessor = createPreprocessorMiddleware({
|
const nativeTextPreprocessor = createPreprocessorMiddleware({
|
||||||
inApi: "anthropic-text",
|
inApi: "anthropic-text",
|
||||||
outApi: "anthropic-text",
|
outApi: "anthropic-text",
|
||||||
@@ -276,7 +267,11 @@ anthropicRouter.get("/v1/models", handleModelRequest);
|
|||||||
anthropicRouter.post(
|
anthropicRouter.post(
|
||||||
"/v1/messages",
|
"/v1/messages",
|
||||||
ipLimiter,
|
ipLimiter,
|
||||||
nativeAnthropicChatPreprocessor,
|
createPreprocessorMiddleware({
|
||||||
|
inApi: "anthropic-chat",
|
||||||
|
outApi: "anthropic-chat",
|
||||||
|
service: "anthropic",
|
||||||
|
}),
|
||||||
anthropicProxy
|
anthropicProxy
|
||||||
);
|
);
|
||||||
// Anthropic text completion endpoint. Translates to Anthropic chat completion
|
// Anthropic text completion endpoint. Translates to Anthropic chat completion
|
||||||
@@ -296,5 +291,65 @@ anthropicRouter.post(
|
|||||||
preprocessOpenAICompatRequest,
|
preprocessOpenAICompatRequest,
|
||||||
anthropicProxy
|
anthropicProxy
|
||||||
);
|
);
|
||||||
|
// Temporarily force Anthropic Text to Anthropic Chat for frontends which do not
|
||||||
|
// yet support the new model. Forces claude-3. Will be removed once common
|
||||||
|
// frontends have been updated.
|
||||||
|
anthropicRouter.post(
|
||||||
|
"/v1/:type(sonnet|opus)/:action(complete|messages)",
|
||||||
|
ipLimiter,
|
||||||
|
handleAnthropicTextCompatRequest,
|
||||||
|
createPreprocessorMiddleware({
|
||||||
|
inApi: "anthropic-text",
|
||||||
|
outApi: "anthropic-chat",
|
||||||
|
service: "anthropic",
|
||||||
|
}),
|
||||||
|
anthropicProxy
|
||||||
|
);
|
||||||
|
|
||||||
|
function handleAnthropicTextCompatRequest(
|
||||||
|
req: Request,
|
||||||
|
res: Response,
|
||||||
|
next: any
|
||||||
|
) {
|
||||||
|
const type = req.params.type;
|
||||||
|
const action = req.params.action;
|
||||||
|
const alreadyInChatFormat = Boolean(req.body.messages);
|
||||||
|
const compatModel = `claude-3-${type}-20240229`;
|
||||||
|
req.log.info(
|
||||||
|
{ type, inputModel: req.body.model, compatModel, alreadyInChatFormat },
|
||||||
|
"Handling Anthropic compatibility request"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (action === "messages" || alreadyInChatFormat) {
|
||||||
|
return sendErrorToClient({
|
||||||
|
req,
|
||||||
|
res,
|
||||||
|
options: {
|
||||||
|
title: "Unnecessary usage of compatibility endpoint",
|
||||||
|
message: `Your client seems to already support the new Claude API format. This endpoint is intended for clients that do not yet support the new format.\nUse the normal \`/anthropic\` proxy endpoint instead.`,
|
||||||
|
format: "unknown",
|
||||||
|
statusCode: 400,
|
||||||
|
reqId: req.id,
|
||||||
|
obj: {
|
||||||
|
requested_endpoint: "/anthropic/" + type,
|
||||||
|
correct_endpoint: "/anthropic",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
req.body.model = compatModel;
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If a client using the OpenAI compatibility endpoint requests an actual OpenAI
|
||||||
|
* model, reassigns it to Claude 3 Sonnet.
|
||||||
|
*/
|
||||||
|
function maybeReassignModel(req: Request) {
|
||||||
|
const model = req.body.model;
|
||||||
|
if (!model.startsWith("gpt-")) return;
|
||||||
|
req.body.model = "claude-3-sonnet-20240229";
|
||||||
|
}
|
||||||
|
|
||||||
export const anthropic = anthropicRouter;
|
export const anthropic = anthropicRouter;
|
||||||
|
|||||||
@@ -1,257 +0,0 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
|
||||||
import { v4 } from "uuid";
|
|
||||||
import {
|
|
||||||
transformAnthropicChatResponseToAnthropicText,
|
|
||||||
transformAnthropicChatResponseToOpenAI,
|
|
||||||
} from "./anthropic";
|
|
||||||
import { ipLimiter } from "./rate-limit";
|
|
||||||
import {
|
|
||||||
createPreprocessorMiddleware,
|
|
||||||
finalizeSignedRequest,
|
|
||||||
signAwsRequest,
|
|
||||||
} from "./middleware/request";
|
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
|
||||||
|
|
||||||
const awsBlockingResponseHandler: ProxyResHandlerWithBody = async (
|
|
||||||
_proxyRes,
|
|
||||||
req,
|
|
||||||
res,
|
|
||||||
body
|
|
||||||
) => {
|
|
||||||
if (typeof body !== "object") {
|
|
||||||
throw new Error("Expected body to be an object");
|
|
||||||
}
|
|
||||||
|
|
||||||
let newBody = body;
|
|
||||||
switch (`${req.inboundApi}<-${req.outboundApi}`) {
|
|
||||||
case "openai<-anthropic-text":
|
|
||||||
req.log.info("Transforming Anthropic Text back to OpenAI format");
|
|
||||||
newBody = transformAwsTextResponseToOpenAI(body, req);
|
|
||||||
break;
|
|
||||||
case "openai<-anthropic-chat":
|
|
||||||
req.log.info("Transforming AWS Anthropic Chat back to OpenAI format");
|
|
||||||
newBody = transformAnthropicChatResponseToOpenAI(body);
|
|
||||||
break;
|
|
||||||
case "anthropic-text<-anthropic-chat":
|
|
||||||
req.log.info("Transforming AWS Anthropic Chat back to Text format");
|
|
||||||
newBody = transformAnthropicChatResponseToAnthropicText(body);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// AWS does not always confirm the model in the response, so we have to add it
|
|
||||||
if (!newBody.model && req.body.model) {
|
|
||||||
newBody.model = req.body.model;
|
|
||||||
}
|
|
||||||
|
|
||||||
res.status(200).json({ ...newBody, proxy: body.proxy });
|
|
||||||
};
|
|
||||||
|
|
||||||
function transformAwsTextResponseToOpenAI(
|
|
||||||
awsBody: Record<string, any>,
|
|
||||||
req: Request
|
|
||||||
): Record<string, any> {
|
|
||||||
const totalTokens = (req.promptTokens ?? 0) + (req.outputTokens ?? 0);
|
|
||||||
return {
|
|
||||||
id: "aws-" + v4(),
|
|
||||||
object: "chat.completion",
|
|
||||||
created: Date.now(),
|
|
||||||
model: req.body.model,
|
|
||||||
usage: {
|
|
||||||
prompt_tokens: req.promptTokens,
|
|
||||||
completion_tokens: req.outputTokens,
|
|
||||||
total_tokens: totalTokens,
|
|
||||||
},
|
|
||||||
choices: [
|
|
||||||
{
|
|
||||||
message: {
|
|
||||||
role: "assistant",
|
|
||||||
content: awsBody.completion?.trim(),
|
|
||||||
},
|
|
||||||
finish_reason: awsBody.stop_reason,
|
|
||||||
index: 0,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
const awsClaudeProxy = createQueuedProxyMiddleware({
|
|
||||||
target: ({ signedRequest }) => {
|
|
||||||
if (!signedRequest) throw new Error("Must sign request before proxying");
|
|
||||||
return `${signedRequest.protocol}//${signedRequest.hostname}`;
|
|
||||||
},
|
|
||||||
mutations: [signAwsRequest, finalizeSignedRequest],
|
|
||||||
blockingResponseHandler: awsBlockingResponseHandler,
|
|
||||||
});
|
|
||||||
|
|
||||||
const nativeTextPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "anthropic-text", outApi: "anthropic-text", service: "aws" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
);
|
|
||||||
|
|
||||||
const textToChatPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "anthropic-text", outApi: "anthropic-chat", service: "aws" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Routes text completion prompts to aws anthropic-chat if they need translation
|
|
||||||
* (claude-3 based models do not support the old text completion endpoint).
|
|
||||||
*/
|
|
||||||
const preprocessAwsTextRequest: RequestHandler = (req, res, next) => {
|
|
||||||
if (req.body.model?.includes("claude-3")) {
|
|
||||||
textToChatPreprocessor(req, res, next);
|
|
||||||
} else {
|
|
||||||
nativeTextPreprocessor(req, res, next);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const oaiToAwsTextPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "openai", outApi: "anthropic-text", service: "aws" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
);
|
|
||||||
|
|
||||||
const oaiToAwsChatPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "openai", outApi: "anthropic-chat", service: "aws" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Routes an OpenAI prompt to either the legacy Claude text completion endpoint
|
|
||||||
* or the new Claude chat completion endpoint, based on the requested model.
|
|
||||||
*/
|
|
||||||
const preprocessOpenAICompatRequest: RequestHandler = (req, res, next) => {
|
|
||||||
if (req.body.model?.includes("claude-3")) {
|
|
||||||
oaiToAwsChatPreprocessor(req, res, next);
|
|
||||||
} else {
|
|
||||||
oaiToAwsTextPreprocessor(req, res, next);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const awsClaudeRouter = Router();
|
|
||||||
// Native(ish) Anthropic text completion endpoint.
|
|
||||||
awsClaudeRouter.post(
|
|
||||||
"/v1/complete",
|
|
||||||
ipLimiter,
|
|
||||||
preprocessAwsTextRequest,
|
|
||||||
awsClaudeProxy
|
|
||||||
);
|
|
||||||
// Native Anthropic chat completion endpoint.
|
|
||||||
awsClaudeRouter.post(
|
|
||||||
"/v1/messages",
|
|
||||||
ipLimiter,
|
|
||||||
createPreprocessorMiddleware(
|
|
||||||
{ inApi: "anthropic-chat", outApi: "anthropic-chat", service: "aws" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
),
|
|
||||||
awsClaudeProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
// OpenAI-to-AWS Anthropic compatibility endpoint.
|
|
||||||
awsClaudeRouter.post(
|
|
||||||
"/v1/chat/completions",
|
|
||||||
ipLimiter,
|
|
||||||
preprocessOpenAICompatRequest,
|
|
||||||
awsClaudeProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to deal with:
|
|
||||||
* - frontends sending AWS model names even when they want to use the OpenAI-
|
|
||||||
* compatible endpoint
|
|
||||||
* - frontends sending Anthropic model names that AWS doesn't recognize
|
|
||||||
* - frontends sending OpenAI model names because they expect the proxy to
|
|
||||||
* translate them
|
|
||||||
*
|
|
||||||
* If client sends AWS model ID it will be used verbatim. Otherwise, various
|
|
||||||
* strategies are used to try to map a non-AWS model name to AWS model ID.
|
|
||||||
*/
|
|
||||||
function maybeReassignModel(req: Request) {
|
|
||||||
const model = req.body.model;
|
|
||||||
|
|
||||||
// If it looks like an AWS model, use it as-is
|
|
||||||
if (model.includes("anthropic.claude")) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Anthropic model names can look like:
|
|
||||||
// - claude-v1
|
|
||||||
// - claude-2.1
|
|
||||||
// - claude-3-5-sonnet-20240620
|
|
||||||
// - claude-3-opus-latest
|
|
||||||
const pattern =
|
|
||||||
/^(claude-)?(instant-)?(v)?(\d+)([.-](\d))?(-\d+k)?(-sonnet-|-opus-|-haiku-)?(latest|\d*)/i;
|
|
||||||
const match = model.match(pattern);
|
|
||||||
|
|
||||||
if (!match) {
|
|
||||||
throw new Error(`Provided model name (${model}) doesn't resemble a Claude model ID.`);
|
|
||||||
}
|
|
||||||
|
|
||||||
const [_, _cl, instant, _v, major, _sep, minor, _ctx, rawName, rev] = match;
|
|
||||||
|
|
||||||
if (instant) {
|
|
||||||
req.body.model = "anthropic.claude-instant-v1";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const ver = minor ? `${major}.${minor}` : major;
|
|
||||||
const name = rawName?.match(/([a-z]+)/)?.[1] || "";
|
|
||||||
|
|
||||||
switch (ver) {
|
|
||||||
case "1":
|
|
||||||
case "1.0":
|
|
||||||
req.body.model = "anthropic.claude-v1";
|
|
||||||
return;
|
|
||||||
case "2":
|
|
||||||
case "2.0":
|
|
||||||
req.body.model = "anthropic.claude-v2";
|
|
||||||
return;
|
|
||||||
case "2.1":
|
|
||||||
req.body.model = "anthropic.claude-v2:1";
|
|
||||||
return;
|
|
||||||
case "3":
|
|
||||||
case "3.0":
|
|
||||||
// there is only one snapshot for all Claude 3 models so there is no need
|
|
||||||
// to check the revision
|
|
||||||
switch (name) {
|
|
||||||
case "sonnet":
|
|
||||||
req.body.model = "anthropic.claude-3-sonnet-20240229-v1:0";
|
|
||||||
return;
|
|
||||||
case "haiku":
|
|
||||||
req.body.model = "anthropic.claude-3-haiku-20240307-v1:0";
|
|
||||||
return;
|
|
||||||
case "opus":
|
|
||||||
req.body.model = "anthropic.claude-3-opus-20240229-v1:0";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "3.5":
|
|
||||||
switch (name) {
|
|
||||||
case "sonnet":
|
|
||||||
switch (rev) {
|
|
||||||
case "20241022":
|
|
||||||
case "latest":
|
|
||||||
req.body.model = "anthropic.claude-3-5-sonnet-20241022-v2:0";
|
|
||||||
return;
|
|
||||||
case "20240620":
|
|
||||||
req.body.model = "anthropic.claude-3-5-sonnet-20240620-v1:0";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "haiku":
|
|
||||||
switch (rev) {
|
|
||||||
case "20241022":
|
|
||||||
case "latest":
|
|
||||||
req.body.model = "anthropic.claude-3-5-haiku-20241022-v1:0";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
case "opus":
|
|
||||||
// Add after model id is announced never
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
throw new Error(`Provided model name (${model}) could not be mapped to a known AWS Claude model ID.`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export const awsClaude = awsClaudeRouter;
|
|
||||||
@@ -1,95 +0,0 @@
|
|||||||
import { Request, Router } from "express";
|
|
||||||
import {
|
|
||||||
detectMistralInputApi,
|
|
||||||
transformMistralTextToMistralChat,
|
|
||||||
} from "./mistral-ai";
|
|
||||||
import { ipLimiter } from "./rate-limit";
|
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
|
||||||
import {
|
|
||||||
createPreprocessorMiddleware,
|
|
||||||
finalizeSignedRequest,
|
|
||||||
signAwsRequest,
|
|
||||||
} from "./middleware/request";
|
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
|
||||||
|
|
||||||
const awsMistralBlockingResponseHandler: ProxyResHandlerWithBody = async (
|
|
||||||
_proxyRes,
|
|
||||||
req,
|
|
||||||
res,
|
|
||||||
body
|
|
||||||
) => {
|
|
||||||
if (typeof body !== "object") {
|
|
||||||
throw new Error("Expected body to be an object");
|
|
||||||
}
|
|
||||||
|
|
||||||
let newBody = body;
|
|
||||||
if (req.inboundApi === "mistral-ai" && req.outboundApi === "mistral-text") {
|
|
||||||
newBody = transformMistralTextToMistralChat(body);
|
|
||||||
}
|
|
||||||
// AWS does not always confirm the model in the response, so we have to add it
|
|
||||||
if (!newBody.model && req.body.model) {
|
|
||||||
newBody.model = req.body.model;
|
|
||||||
}
|
|
||||||
|
|
||||||
res.status(200).json({ ...newBody, proxy: body.proxy });
|
|
||||||
};
|
|
||||||
|
|
||||||
const awsMistralProxy = createQueuedProxyMiddleware({
|
|
||||||
target: ({ signedRequest }) => {
|
|
||||||
if (!signedRequest) throw new Error("Must sign request before proxying");
|
|
||||||
return `${signedRequest.protocol}//${signedRequest.hostname}`;
|
|
||||||
},
|
|
||||||
mutations: [signAwsRequest,finalizeSignedRequest],
|
|
||||||
blockingResponseHandler: awsMistralBlockingResponseHandler,
|
|
||||||
});
|
|
||||||
|
|
||||||
function maybeReassignModel(req: Request) {
|
|
||||||
const model = req.body.model;
|
|
||||||
|
|
||||||
// If it looks like an AWS model, use it as-is
|
|
||||||
if (model.startsWith("mistral.")) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Mistral 7B Instruct
|
|
||||||
else if (model.includes("7b")) {
|
|
||||||
req.body.model = "mistral.mistral-7b-instruct-v0:2";
|
|
||||||
}
|
|
||||||
// Mistral 8x7B Instruct
|
|
||||||
else if (model.includes("8x7b")) {
|
|
||||||
req.body.model = "mistral.mixtral-8x7b-instruct-v0:1";
|
|
||||||
}
|
|
||||||
// Mistral Large (Feb 2024)
|
|
||||||
else if (model.includes("large-2402")) {
|
|
||||||
req.body.model = "mistral.mistral-large-2402-v1:0";
|
|
||||||
}
|
|
||||||
// Mistral Large 2 (July 2024)
|
|
||||||
else if (model.includes("large")) {
|
|
||||||
req.body.model = "mistral.mistral-large-2407-v1:0";
|
|
||||||
}
|
|
||||||
// Mistral Small (Feb 2024)
|
|
||||||
else if (model.includes("small")) {
|
|
||||||
req.body.model = "mistral.mistral-small-2402-v1:0";
|
|
||||||
} else {
|
|
||||||
throw new Error(
|
|
||||||
`Can't map '${model}' to a supported AWS model ID; make sure you are requesting a Mistral model supported by Amazon Bedrock`
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const nativeMistralChatPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "mistral-ai", outApi: "mistral-ai", service: "aws" },
|
|
||||||
{
|
|
||||||
beforeTransform: [detectMistralInputApi],
|
|
||||||
afterTransform: [maybeReassignModel],
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const awsMistralRouter = Router();
|
|
||||||
awsMistralRouter.post(
|
|
||||||
"/v1/chat/completions",
|
|
||||||
ipLimiter,
|
|
||||||
nativeMistralChatPreprocessor,
|
|
||||||
awsMistralProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
export const awsMistral = awsMistralRouter;
|
|
||||||
+291
-61
@@ -1,77 +1,307 @@
|
|||||||
/* Shared code between AWS Claude and AWS Mistral endpoints. */
|
import { Request, RequestHandler, Response, Router } from "express";
|
||||||
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { Request, Response, Router } from "express";
|
import { v4 } from "uuid";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
import { addV1 } from "./add-v1";
|
import { logger } from "../logger";
|
||||||
import { awsClaude } from "./aws-claude";
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { awsMistral } from "./aws-mistral";
|
import { ipLimiter } from "./rate-limit";
|
||||||
import { AwsBedrockKey, keyPool } from "../shared/key-management";
|
import { handleProxyError } from "./middleware/common";
|
||||||
|
import {
|
||||||
|
createPreprocessorMiddleware,
|
||||||
|
signAwsRequest,
|
||||||
|
finalizeSignedRequest,
|
||||||
|
createOnProxyReqHandler,
|
||||||
|
} from "./middleware/request";
|
||||||
|
import {
|
||||||
|
ProxyResHandlerWithBody,
|
||||||
|
createOnProxyResHandler,
|
||||||
|
} from "./middleware/response";
|
||||||
|
import { transformAnthropicChatResponseToAnthropicText } from "./anthropic";
|
||||||
|
import { sendErrorToClient } from "./middleware/response/error-generator";
|
||||||
|
|
||||||
const awsRouter = Router();
|
const LATEST_AWS_V2_MINOR_VERSION = "1";
|
||||||
awsRouter.get(["/:vendor?/v1/models", "/:vendor?/models"], handleModelsRequest);
|
|
||||||
awsRouter.use("/claude", addV1, awsClaude);
|
let modelsCache: any = null;
|
||||||
awsRouter.use("/mistral", addV1, awsMistral);
|
let modelsCacheTime = 0;
|
||||||
|
|
||||||
|
const getModelsResponse = () => {
|
||||||
|
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
||||||
|
return modelsCache;
|
||||||
|
}
|
||||||
|
|
||||||
const MODELS_CACHE_TTL = 10000;
|
|
||||||
let modelsCache: Record<string, any> = {};
|
|
||||||
let modelsCacheTime: Record<string, number> = {};
|
|
||||||
function handleModelsRequest(req: Request, res: Response) {
|
|
||||||
if (!config.awsCredentials) return { object: "list", data: [] };
|
if (!config.awsCredentials) return { object: "list", data: [] };
|
||||||
|
|
||||||
const vendor = req.params.vendor?.length
|
|
||||||
? req.params.vendor === "claude"
|
|
||||||
? "anthropic"
|
|
||||||
: req.params.vendor
|
|
||||||
: "all";
|
|
||||||
|
|
||||||
const cacheTime = modelsCacheTime[vendor] || 0;
|
|
||||||
if (new Date().getTime() - cacheTime < MODELS_CACHE_TTL) {
|
|
||||||
return res.json(modelsCache[vendor]);
|
|
||||||
}
|
|
||||||
|
|
||||||
const availableModelIds = new Set<string>();
|
|
||||||
for (const key of keyPool.list()) {
|
|
||||||
if (key.isDisabled || key.service !== "aws") continue;
|
|
||||||
(key as AwsBedrockKey).modelIds.forEach((id) => availableModelIds.add(id));
|
|
||||||
}
|
|
||||||
|
|
||||||
// https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
|
// https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
|
||||||
const models = [
|
const variants = [
|
||||||
"anthropic.claude-v2",
|
"anthropic.claude-v2",
|
||||||
"anthropic.claude-v2:1",
|
"anthropic.claude-v2:1",
|
||||||
"anthropic.claude-3-haiku-20240307-v1:0",
|
"anthropic.claude-3-haiku-20240307-v1:0",
|
||||||
"anthropic.claude-3-5-haiku-20241022-v1:0",
|
|
||||||
"anthropic.claude-3-sonnet-20240229-v1:0",
|
"anthropic.claude-3-sonnet-20240229-v1:0",
|
||||||
"anthropic.claude-3-5-sonnet-20240620-v1:0",
|
];
|
||||||
"anthropic.claude-3-5-sonnet-20241022-v2:0",
|
|
||||||
"anthropic.claude-3-opus-20240229-v1:0",
|
|
||||||
"mistral.mistral-7b-instruct-v0:2",
|
|
||||||
"mistral.mixtral-8x7b-instruct-v0:1",
|
|
||||||
"mistral.mistral-large-2402-v1:0",
|
|
||||||
"mistral.mistral-large-2407-v1:0",
|
|
||||||
"mistral.mistral-small-2402-v1:0",
|
|
||||||
]
|
|
||||||
.filter((id) => availableModelIds.has(id))
|
|
||||||
.map((id) => {
|
|
||||||
const vendor = id.match(/^(.*)\./)?.[1];
|
|
||||||
return {
|
|
||||||
id,
|
|
||||||
object: "model",
|
|
||||||
created: new Date().getTime(),
|
|
||||||
owned_by: vendor,
|
|
||||||
permission: [],
|
|
||||||
root: vendor,
|
|
||||||
parent: null,
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
modelsCache[vendor] = {
|
const models = variants.map((id) => ({
|
||||||
object: "list",
|
id,
|
||||||
data: models.filter((m) => vendor === "all" || m.root === vendor),
|
object: "model",
|
||||||
|
created: new Date().getTime(),
|
||||||
|
owned_by: "anthropic",
|
||||||
|
permission: [],
|
||||||
|
root: "claude",
|
||||||
|
parent: null,
|
||||||
|
}));
|
||||||
|
|
||||||
|
modelsCache = { object: "list", data: models };
|
||||||
|
modelsCacheTime = new Date().getTime();
|
||||||
|
|
||||||
|
return modelsCache;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleModelRequest: RequestHandler = (_req, res) => {
|
||||||
|
res.status(200).json(getModelsResponse());
|
||||||
|
};
|
||||||
|
|
||||||
|
/** Only used for non-streaming requests. */
|
||||||
|
const awsResponseHandler: ProxyResHandlerWithBody = async (
|
||||||
|
_proxyRes,
|
||||||
|
req,
|
||||||
|
res,
|
||||||
|
body
|
||||||
|
) => {
|
||||||
|
if (typeof body !== "object") {
|
||||||
|
throw new Error("Expected body to be an object");
|
||||||
|
}
|
||||||
|
|
||||||
|
let newBody = body;
|
||||||
|
switch (`${req.inboundApi}<-${req.outboundApi}`) {
|
||||||
|
case "openai<-anthropic-text":
|
||||||
|
req.log.info("Transforming Anthropic Text back to OpenAI format");
|
||||||
|
newBody = transformAwsTextResponseToOpenAI(body, req);
|
||||||
|
break;
|
||||||
|
// case "openai<-anthropic-chat":
|
||||||
|
// todo: implement this
|
||||||
|
case "anthropic-text<-anthropic-chat":
|
||||||
|
req.log.info("Transforming AWS Anthropic Chat back to Text format");
|
||||||
|
newBody = transformAnthropicChatResponseToAnthropicText(body);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
// AWS does not always confirm the model in the response, so we have to add it
|
||||||
|
if (!newBody.model && req.body.model) {
|
||||||
|
newBody.model = req.body.model;
|
||||||
|
}
|
||||||
|
|
||||||
|
res.status(200).json({ ...newBody, proxy: body.proxy });
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Transforms a model response from the Anthropic API to match those from the
|
||||||
|
* OpenAI API, for users using Claude via the OpenAI-compatible endpoint. This
|
||||||
|
* is only used for non-streaming requests as streaming requests are handled
|
||||||
|
* on-the-fly.
|
||||||
|
*/
|
||||||
|
function transformAwsTextResponseToOpenAI(
|
||||||
|
awsBody: Record<string, any>,
|
||||||
|
req: Request
|
||||||
|
): Record<string, any> {
|
||||||
|
const totalTokens = (req.promptTokens ?? 0) + (req.outputTokens ?? 0);
|
||||||
|
return {
|
||||||
|
id: "aws-" + v4(),
|
||||||
|
object: "chat.completion",
|
||||||
|
created: Date.now(),
|
||||||
|
model: req.body.model,
|
||||||
|
usage: {
|
||||||
|
prompt_tokens: req.promptTokens,
|
||||||
|
completion_tokens: req.outputTokens,
|
||||||
|
total_tokens: totalTokens,
|
||||||
|
},
|
||||||
|
choices: [
|
||||||
|
{
|
||||||
|
message: {
|
||||||
|
role: "assistant",
|
||||||
|
content: awsBody.completion?.trim(),
|
||||||
|
},
|
||||||
|
finish_reason: awsBody.stop_reason,
|
||||||
|
index: 0,
|
||||||
|
},
|
||||||
|
],
|
||||||
};
|
};
|
||||||
modelsCacheTime[vendor] = new Date().getTime();
|
}
|
||||||
|
|
||||||
return res.json(modelsCache[vendor]);
|
const awsProxy = createQueueMiddleware({
|
||||||
|
beforeProxy: signAwsRequest,
|
||||||
|
proxyMiddleware: createProxyMiddleware({
|
||||||
|
target: "bad-target-will-be-rewritten",
|
||||||
|
router: ({ signedRequest }) => {
|
||||||
|
if (!signedRequest) throw new Error("Must sign request before proxying");
|
||||||
|
return `${signedRequest.protocol}//${signedRequest.hostname}`;
|
||||||
|
},
|
||||||
|
changeOrigin: true,
|
||||||
|
selfHandleResponse: true,
|
||||||
|
logger,
|
||||||
|
on: {
|
||||||
|
proxyReq: createOnProxyReqHandler({ pipeline: [finalizeSignedRequest] }),
|
||||||
|
proxyRes: createOnProxyResHandler([awsResponseHandler]),
|
||||||
|
error: handleProxyError,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
const nativeTextPreprocessor = createPreprocessorMiddleware(
|
||||||
|
{ inApi: "anthropic-text", outApi: "anthropic-text", service: "aws" },
|
||||||
|
{ afterTransform: [maybeReassignModel] }
|
||||||
|
);
|
||||||
|
|
||||||
|
const textToChatPreprocessor = createPreprocessorMiddleware(
|
||||||
|
{ inApi: "anthropic-text", outApi: "anthropic-chat", service: "aws" },
|
||||||
|
{ afterTransform: [maybeReassignModel] }
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Routes text completion prompts to aws anthropic-chat if they need translation
|
||||||
|
* (claude-3 based models do not support the old text completion endpoint).
|
||||||
|
*/
|
||||||
|
const awsTextCompletionRouter: RequestHandler = (req, res, next) => {
|
||||||
|
if (req.body.model?.includes("claude-3")) {
|
||||||
|
textToChatPreprocessor(req, res, next);
|
||||||
|
} else {
|
||||||
|
nativeTextPreprocessor(req, res, next);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const awsRouter = Router();
|
||||||
|
awsRouter.get("/v1/models", handleModelRequest);
|
||||||
|
// Native(ish) Anthropic text completion endpoint.
|
||||||
|
awsRouter.post("/v1/complete", ipLimiter, awsTextCompletionRouter, awsProxy);
|
||||||
|
// Native Anthropic chat completion endpoint.
|
||||||
|
awsRouter.post(
|
||||||
|
"/v1/messages",
|
||||||
|
ipLimiter,
|
||||||
|
createPreprocessorMiddleware(
|
||||||
|
{ inApi: "anthropic-chat", outApi: "anthropic-chat", service: "aws" },
|
||||||
|
{ afterTransform: [maybeReassignModel] }
|
||||||
|
),
|
||||||
|
awsProxy
|
||||||
|
);
|
||||||
|
// Temporary force-Claude3 endpoint
|
||||||
|
awsRouter.post(
|
||||||
|
"/v1/sonnet/:action(complete|messages)",
|
||||||
|
ipLimiter,
|
||||||
|
handleCompatibilityRequest,
|
||||||
|
createPreprocessorMiddleware({
|
||||||
|
inApi: "anthropic-text",
|
||||||
|
outApi: "anthropic-chat",
|
||||||
|
service: "aws",
|
||||||
|
}),
|
||||||
|
awsProxy
|
||||||
|
);
|
||||||
|
|
||||||
|
// OpenAI-to-AWS Anthropic compatibility endpoint.
|
||||||
|
awsRouter.post(
|
||||||
|
"/v1/chat/completions",
|
||||||
|
ipLimiter,
|
||||||
|
createPreprocessorMiddleware(
|
||||||
|
{ inApi: "openai", outApi: "anthropic-text", service: "aws" },
|
||||||
|
{ afterTransform: [maybeReassignModel] }
|
||||||
|
),
|
||||||
|
awsProxy
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tries to deal with:
|
||||||
|
* - frontends sending AWS model names even when they want to use the OpenAI-
|
||||||
|
* compatible endpoint
|
||||||
|
* - frontends sending Anthropic model names that AWS doesn't recognize
|
||||||
|
* - frontends sending OpenAI model names because they expect the proxy to
|
||||||
|
* translate them
|
||||||
|
*/
|
||||||
|
function maybeReassignModel(req: Request) {
|
||||||
|
const model = req.body.model;
|
||||||
|
|
||||||
|
// If client already specified an AWS Claude model ID, use it
|
||||||
|
if (model.includes("anthropic.claude")) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const pattern =
|
||||||
|
/^(claude-)?(instant-)?(v)?(\d+)(\.(\d+))?(-\d+k)?(-sonnet-?|-opus-?)(\d*)/i;
|
||||||
|
const match = model.match(pattern);
|
||||||
|
|
||||||
|
// If there's no match, return the latest v2 model
|
||||||
|
if (!match) {
|
||||||
|
req.body.model = `anthropic.claude-v2:${LATEST_AWS_V2_MINOR_VERSION}`;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const instant = match[2];
|
||||||
|
const major = match[4];
|
||||||
|
const minor = match[6];
|
||||||
|
|
||||||
|
if (instant) {
|
||||||
|
req.body.model = "anthropic.claude-instant-v1";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// There's only one v1 model
|
||||||
|
if (major === "1") {
|
||||||
|
req.body.model = "anthropic.claude-v1";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to map Anthropic API v2 models to AWS v2 models
|
||||||
|
if (major === "2") {
|
||||||
|
if (minor === "0") {
|
||||||
|
req.body.model = "anthropic.claude-v2";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
req.body.model = `anthropic.claude-v2:${LATEST_AWS_V2_MINOR_VERSION}`;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// AWS currently only supports one v3 model.
|
||||||
|
const variant = match[8]; // sonnet or opus
|
||||||
|
const variantVersion = match[9];
|
||||||
|
if (major === "3") {
|
||||||
|
req.body.model = "anthropic.claude-3-sonnet-20240229-v1:0";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fallback to latest v2 model
|
||||||
|
req.body.model = `anthropic.claude-v2:${LATEST_AWS_V2_MINOR_VERSION}`;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function handleCompatibilityRequest(
|
||||||
|
req: Request,
|
||||||
|
res: Response,
|
||||||
|
next: any
|
||||||
|
) {
|
||||||
|
const action = req.params.action;
|
||||||
|
const alreadyInChatFormat = Boolean(req.body.messages);
|
||||||
|
const compatModel = "anthropic.claude-3-sonnet-20240229-v1:0";
|
||||||
|
req.log.info(
|
||||||
|
{ inputModel: req.body.model, compatModel, alreadyInChatFormat },
|
||||||
|
"Handling AWS compatibility request"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (action === "messages" || alreadyInChatFormat) {
|
||||||
|
return sendErrorToClient({
|
||||||
|
req,
|
||||||
|
res,
|
||||||
|
options: {
|
||||||
|
title: "Unnecessary usage of compatibility endpoint",
|
||||||
|
message: `Your client seems to already support the new Claude API format. This endpoint is intended for clients that do not yet support the new format.\nUse the normal \`/aws/claude\` proxy endpoint instead.`,
|
||||||
|
format: "unknown",
|
||||||
|
statusCode: 400,
|
||||||
|
reqId: req.id,
|
||||||
|
obj: {
|
||||||
|
requested_endpoint: "/aws/claude/sonnet",
|
||||||
|
correct_endpoint: "/aws/claude",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
req.body.model = compatModel;
|
||||||
|
next();
|
||||||
}
|
}
|
||||||
|
|
||||||
export const aws = awsRouter;
|
export const aws = awsRouter;
|
||||||
|
|||||||
+70
-18
@@ -1,30 +1,73 @@
|
|||||||
import { RequestHandler, Router } from "express";
|
import { RequestHandler, Router } from "express";
|
||||||
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
import { generateModelList } from "./openai";
|
import { keyPool } from "../shared/key-management";
|
||||||
|
import {
|
||||||
|
AzureOpenAIModelFamily,
|
||||||
|
getAzureOpenAIModelFamily,
|
||||||
|
ModelFamily,
|
||||||
|
} from "../shared/models";
|
||||||
|
import { logger } from "../logger";
|
||||||
|
import { KNOWN_OPENAI_MODELS } from "./openai";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
addAzureKey,
|
addAzureKey,
|
||||||
|
createOnProxyReqHandler,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeSignedRequest,
|
finalizeSignedRequest,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
createOnProxyResHandler,
|
||||||
|
ProxyResHandlerWithBody,
|
||||||
|
} from "./middleware/response";
|
||||||
|
|
||||||
let modelsCache: any = null;
|
let modelsCache: any = null;
|
||||||
let modelsCacheTime = 0;
|
let modelsCacheTime = 0;
|
||||||
|
|
||||||
const handleModelRequest: RequestHandler = (_req, res) => {
|
function getModelsResponse() {
|
||||||
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
||||||
return res.status(200).json(modelsCache);
|
return modelsCache;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!config.azureCredentials) return { object: "list", data: [] };
|
let available = new Set<AzureOpenAIModelFamily>();
|
||||||
|
for (const key of keyPool.list()) {
|
||||||
|
if (key.isDisabled || key.service !== "azure") continue;
|
||||||
|
key.modelFamilies.forEach((family) =>
|
||||||
|
available.add(family as AzureOpenAIModelFamily)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
const allowed = new Set<ModelFamily>(config.allowedModelFamilies);
|
||||||
|
available = new Set([...available].filter((x) => allowed.has(x)));
|
||||||
|
|
||||||
const result = generateModelList("azure");
|
const models = KNOWN_OPENAI_MODELS.map((id) => ({
|
||||||
|
id,
|
||||||
|
object: "model",
|
||||||
|
created: new Date().getTime(),
|
||||||
|
owned_by: "azure",
|
||||||
|
permission: [
|
||||||
|
{
|
||||||
|
id: "modelperm-" + id,
|
||||||
|
object: "model_permission",
|
||||||
|
created: new Date().getTime(),
|
||||||
|
organization: "*",
|
||||||
|
group: null,
|
||||||
|
is_blocking: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
root: id,
|
||||||
|
parent: null,
|
||||||
|
})).filter((model) => available.has(getAzureOpenAIModelFamily(model.id)));
|
||||||
|
|
||||||
modelsCache = { object: "list", data: result };
|
modelsCache = { object: "list", data: models };
|
||||||
modelsCacheTime = new Date().getTime();
|
modelsCacheTime = new Date().getTime();
|
||||||
res.status(200).json(modelsCache);
|
|
||||||
|
return modelsCache;
|
||||||
|
}
|
||||||
|
|
||||||
|
const handleModelRequest: RequestHandler = (_req, res) => {
|
||||||
|
res.status(200).json(getModelsResponse());
|
||||||
};
|
};
|
||||||
|
|
||||||
const azureOpenaiResponseHandler: ProxyResHandlerWithBody = async (
|
const azureOpenaiResponseHandler: ProxyResHandlerWithBody = async (
|
||||||
@@ -40,17 +83,26 @@ const azureOpenaiResponseHandler: ProxyResHandlerWithBody = async (
|
|||||||
res.status(200).json({ ...body, proxy: body.proxy });
|
res.status(200).json({ ...body, proxy: body.proxy });
|
||||||
};
|
};
|
||||||
|
|
||||||
const azureOpenAIProxy = createQueuedProxyMiddleware({
|
const azureOpenAIProxy = createQueueMiddleware({
|
||||||
target: ({ signedRequest }) => {
|
beforeProxy: addAzureKey,
|
||||||
if (!signedRequest) throw new Error("Must sign request before proxying");
|
proxyMiddleware: createProxyMiddleware({
|
||||||
const { hostname, protocol } = signedRequest;
|
target: "will be set by router",
|
||||||
return `${protocol}//${hostname}`;
|
router: (req) => {
|
||||||
},
|
if (!req.signedRequest) throw new Error("signedRequest not set");
|
||||||
mutations: [addAzureKey, finalizeSignedRequest],
|
const { hostname, path } = req.signedRequest;
|
||||||
blockingResponseHandler: azureOpenaiResponseHandler,
|
return `https://${hostname}${path}`;
|
||||||
|
},
|
||||||
|
changeOrigin: true,
|
||||||
|
selfHandleResponse: true,
|
||||||
|
logger,
|
||||||
|
on: {
|
||||||
|
proxyReq: createOnProxyReqHandler({ pipeline: [finalizeSignedRequest] }),
|
||||||
|
proxyRes: createOnProxyResHandler([azureOpenaiResponseHandler]),
|
||||||
|
error: handleProxyError,
|
||||||
|
},
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
const azureOpenAIRouter = Router();
|
const azureOpenAIRouter = Router();
|
||||||
azureOpenAIRouter.get("/v1/models", handleModelRequest);
|
azureOpenAIRouter.get("/v1/models", handleModelRequest);
|
||||||
azureOpenAIRouter.post(
|
azureOpenAIRouter.post(
|
||||||
|
|||||||
+10
-51
@@ -1,7 +1,6 @@
|
|||||||
import type { Request, Response, RequestHandler } from "express";
|
import type { Request, RequestHandler } from "express";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
import { authenticate, getUser } from "../shared/users/user-store";
|
import { authenticate, getUser } from "../shared/users/user-store";
|
||||||
import { sendErrorToClient } from "./middleware/response/error-generator";
|
|
||||||
|
|
||||||
const GATEKEEPER = config.gatekeeper;
|
const GATEKEEPER = config.gatekeeper;
|
||||||
const PROXY_KEY = config.proxyKey;
|
const PROXY_KEY = config.proxyKey;
|
||||||
@@ -12,7 +11,6 @@ function getProxyAuthorizationFromRequest(req: Request): string | undefined {
|
|||||||
// pass the _proxy_ key in this header too, instead of providing it as a
|
// pass the _proxy_ key in this header too, instead of providing it as a
|
||||||
// Bearer token in the Authorization header. So we need to check both.
|
// Bearer token in the Authorization header. So we need to check both.
|
||||||
// Prefer the Authorization header if both are present.
|
// Prefer the Authorization header if both are present.
|
||||||
// Google AI uses a key querystring parameter.
|
|
||||||
|
|
||||||
if (req.headers.authorization) {
|
if (req.headers.authorization) {
|
||||||
const token = req.headers.authorization?.slice("Bearer ".length);
|
const token = req.headers.authorization?.slice("Bearer ".length);
|
||||||
@@ -25,12 +23,6 @@ function getProxyAuthorizationFromRequest(req: Request): string | undefined {
|
|||||||
delete req.headers["x-api-key"];
|
delete req.headers["x-api-key"];
|
||||||
return token;
|
return token;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (req.query.key) {
|
|
||||||
const token = req.query.key?.toString();
|
|
||||||
delete req.query.key;
|
|
||||||
return token;
|
|
||||||
}
|
|
||||||
|
|
||||||
return undefined;
|
return undefined;
|
||||||
}
|
}
|
||||||
@@ -58,9 +50,9 @@ export const gatekeeper: RequestHandler = (req, res, next) => {
|
|||||||
// IP alone to distinguish between them and prevent usertoken sharing.
|
// IP alone to distinguish between them and prevent usertoken sharing.
|
||||||
// Risu sends a signed token in the request headers with an anonymous user
|
// Risu sends a signed token in the request headers with an anonymous user
|
||||||
// ID that we can instead use to associate requests with an individual.
|
// ID that we can instead use to associate requests with an individual.
|
||||||
const ip = req.risuToken?.length
|
const ip = req.risuToken?.length ?
|
||||||
? `risu${req.risuToken}-${req.ip}`
|
`risu${req.risuToken}-${req.ip}` :
|
||||||
: req.ip;
|
req.ip;
|
||||||
|
|
||||||
const { user, result } = authenticate(token, ip);
|
const { user, result } = authenticate(token, ip);
|
||||||
|
|
||||||
@@ -69,50 +61,17 @@ export const gatekeeper: RequestHandler = (req, res, next) => {
|
|||||||
req.user = user;
|
req.user = user;
|
||||||
return next();
|
return next();
|
||||||
case "limited":
|
case "limited":
|
||||||
return sendError(
|
return res.status(403).json({
|
||||||
req,
|
error: `Forbidden: no more IPs can authenticate with this token`,
|
||||||
res,
|
});
|
||||||
403,
|
|
||||||
`Forbidden: no more IP addresses allowed for this user token`,
|
|
||||||
{ currentIp: ip, maxIps: user?.maxIps }
|
|
||||||
);
|
|
||||||
case "disabled":
|
case "disabled":
|
||||||
const bannedUser = getUser(token);
|
const bannedUser = getUser(token);
|
||||||
if (bannedUser?.disabledAt) {
|
if (bannedUser?.disabledAt) {
|
||||||
const reason = bannedUser.disabledReason || "User token disabled";
|
const reason = bannedUser.disabledReason || "Token disabled";
|
||||||
return sendError(req, res, 403, `Forbidden: ${reason}`);
|
return res.status(403).json({ error: `Forbidden: ${reason}` });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
sendError(req, res, 401, "Unauthorized");
|
res.status(401).json({ error: "Unauthorized" });
|
||||||
};
|
};
|
||||||
|
|
||||||
function sendError(
|
|
||||||
req: Request,
|
|
||||||
res: Response,
|
|
||||||
status: number,
|
|
||||||
message: string,
|
|
||||||
data: any = {}
|
|
||||||
) {
|
|
||||||
const isPost = req.method === "POST";
|
|
||||||
const hasBody = isPost && req.body;
|
|
||||||
const hasModel = hasBody && req.body.model;
|
|
||||||
|
|
||||||
if (!hasModel) {
|
|
||||||
return res.status(status).json({ error: message });
|
|
||||||
}
|
|
||||||
|
|
||||||
sendErrorToClient({
|
|
||||||
req,
|
|
||||||
res,
|
|
||||||
options: {
|
|
||||||
title: `Proxy gatekeeper error (HTTP ${status})`,
|
|
||||||
message,
|
|
||||||
format: "unknown",
|
|
||||||
statusCode: status,
|
|
||||||
reqId: req.id,
|
|
||||||
obj: data,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,196 +0,0 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
|
||||||
import { config } from "../config";
|
|
||||||
import { transformAnthropicChatResponseToOpenAI } from "./anthropic";
|
|
||||||
import { ipLimiter } from "./rate-limit";
|
|
||||||
import {
|
|
||||||
createPreprocessorMiddleware,
|
|
||||||
finalizeSignedRequest,
|
|
||||||
signGcpRequest,
|
|
||||||
} from "./middleware/request";
|
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
|
||||||
|
|
||||||
const LATEST_GCP_SONNET_MINOR_VERSION = "20240229";
|
|
||||||
|
|
||||||
let modelsCache: any = null;
|
|
||||||
let modelsCacheTime = 0;
|
|
||||||
|
|
||||||
const getModelsResponse = () => {
|
|
||||||
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
|
||||||
return modelsCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!config.gcpCredentials) return { object: "list", data: [] };
|
|
||||||
|
|
||||||
// https://docs.anthropic.com/en/docs/about-claude/models
|
|
||||||
const variants = [
|
|
||||||
"claude-3-haiku@20240307",
|
|
||||||
"claude-3-5-haiku@20241022",
|
|
||||||
"claude-3-sonnet@20240229",
|
|
||||||
"claude-3-5-sonnet@20240620",
|
|
||||||
"claude-3-5-sonnet-v2@20241022",
|
|
||||||
"claude-3-opus@20240229",
|
|
||||||
];
|
|
||||||
|
|
||||||
const models = variants.map((id) => ({
|
|
||||||
id,
|
|
||||||
object: "model",
|
|
||||||
created: new Date().getTime(),
|
|
||||||
owned_by: "anthropic",
|
|
||||||
permission: [],
|
|
||||||
root: "claude",
|
|
||||||
parent: null,
|
|
||||||
}));
|
|
||||||
|
|
||||||
modelsCache = { object: "list", data: models };
|
|
||||||
modelsCacheTime = new Date().getTime();
|
|
||||||
|
|
||||||
return modelsCache;
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleModelRequest: RequestHandler = (_req, res) => {
|
|
||||||
res.status(200).json(getModelsResponse());
|
|
||||||
};
|
|
||||||
|
|
||||||
const gcpBlockingResponseHandler: ProxyResHandlerWithBody = async (
|
|
||||||
_proxyRes,
|
|
||||||
req,
|
|
||||||
res,
|
|
||||||
body
|
|
||||||
) => {
|
|
||||||
if (typeof body !== "object") {
|
|
||||||
throw new Error("Expected body to be an object");
|
|
||||||
}
|
|
||||||
|
|
||||||
let newBody = body;
|
|
||||||
switch (`${req.inboundApi}<-${req.outboundApi}`) {
|
|
||||||
case "openai<-anthropic-chat":
|
|
||||||
req.log.info("Transforming Anthropic Chat back to OpenAI format");
|
|
||||||
newBody = transformAnthropicChatResponseToOpenAI(body);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
res.status(200).json({ ...newBody, proxy: body.proxy });
|
|
||||||
};
|
|
||||||
|
|
||||||
const gcpProxy = createQueuedProxyMiddleware({
|
|
||||||
target: ({ signedRequest }) => {
|
|
||||||
if (!signedRequest) throw new Error("Must sign request before proxying");
|
|
||||||
return `${signedRequest.protocol}//${signedRequest.hostname}`;
|
|
||||||
},
|
|
||||||
mutations: [signGcpRequest, finalizeSignedRequest],
|
|
||||||
blockingResponseHandler: gcpBlockingResponseHandler,
|
|
||||||
});
|
|
||||||
|
|
||||||
const oaiToChatPreprocessor = createPreprocessorMiddleware(
|
|
||||||
{ inApi: "openai", outApi: "anthropic-chat", service: "gcp" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Routes an OpenAI prompt to either the legacy Claude text completion endpoint
|
|
||||||
* or the new Claude chat completion endpoint, based on the requested model.
|
|
||||||
*/
|
|
||||||
const preprocessOpenAICompatRequest: RequestHandler = (req, res, next) => {
|
|
||||||
oaiToChatPreprocessor(req, res, next);
|
|
||||||
};
|
|
||||||
|
|
||||||
const gcpRouter = Router();
|
|
||||||
gcpRouter.get("/v1/models", handleModelRequest);
|
|
||||||
// Native Anthropic chat completion endpoint.
|
|
||||||
gcpRouter.post(
|
|
||||||
"/v1/messages",
|
|
||||||
ipLimiter,
|
|
||||||
createPreprocessorMiddleware(
|
|
||||||
{ inApi: "anthropic-chat", outApi: "anthropic-chat", service: "gcp" },
|
|
||||||
{ afterTransform: [maybeReassignModel] }
|
|
||||||
),
|
|
||||||
gcpProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
// OpenAI-to-GCP Anthropic compatibility endpoint.
|
|
||||||
gcpRouter.post(
|
|
||||||
"/v1/chat/completions",
|
|
||||||
ipLimiter,
|
|
||||||
preprocessOpenAICompatRequest,
|
|
||||||
gcpProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to deal with:
|
|
||||||
* - frontends sending GCP model names even when they want to use the OpenAI-
|
|
||||||
* compatible endpoint
|
|
||||||
* - frontends sending Anthropic model names that GCP doesn't recognize
|
|
||||||
* - frontends sending OpenAI model names because they expect the proxy to
|
|
||||||
* translate them
|
|
||||||
*
|
|
||||||
* If client sends GCP model ID it will be used verbatim. Otherwise, various
|
|
||||||
* strategies are used to try to map a non-GCP model name to GCP model ID.
|
|
||||||
*/
|
|
||||||
function maybeReassignModel(req: Request) {
|
|
||||||
const model = req.body.model;
|
|
||||||
|
|
||||||
// If it looks like an GCP model, use it as-is
|
|
||||||
// if (model.includes("anthropic.claude")) {
|
|
||||||
if (model.startsWith("claude-") && model.includes("@")) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Anthropic model names can look like:
|
|
||||||
// - claude-v1
|
|
||||||
// - claude-2.1
|
|
||||||
// - claude-3-5-sonnet-20240620-v1:0
|
|
||||||
const pattern =
|
|
||||||
/^(claude-)?(instant-)?(v)?(\d+)([.-](\d{1}))?(-\d+k)?(-sonnet-|-opus-|-haiku-)?(\d*)/i;
|
|
||||||
const match = model.match(pattern);
|
|
||||||
|
|
||||||
// If there's no match, fallback to Claude3 Sonnet as it is most likely to be
|
|
||||||
// available on GCP.
|
|
||||||
if (!match) {
|
|
||||||
req.body.model = `claude-3-sonnet@${LATEST_GCP_SONNET_MINOR_VERSION}`;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const [_, _cl, instant, _v, major, _sep, minor, _ctx, name, rev] = match;
|
|
||||||
|
|
||||||
// TODO: rework this to function similarly to aws-claude.ts maybeReassignModel
|
|
||||||
const ver = minor ? `${major}.${minor}` : major;
|
|
||||||
switch (ver) {
|
|
||||||
case "3":
|
|
||||||
case "3.0":
|
|
||||||
if (name.includes("opus")) {
|
|
||||||
req.body.model = "claude-3-opus@20240229";
|
|
||||||
} else if (name.includes("haiku")) {
|
|
||||||
req.body.model = "claude-3-haiku@20240307";
|
|
||||||
} else {
|
|
||||||
req.body.model = "claude-3-sonnet@20240229";
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
case "3.5":
|
|
||||||
switch (name) {
|
|
||||||
case "sonnet":
|
|
||||||
switch (rev) {
|
|
||||||
case "20241022":
|
|
||||||
case "latest":
|
|
||||||
req.body.model = "claude-3-5-sonnet-v2@20241022";
|
|
||||||
return;
|
|
||||||
case "20240620":
|
|
||||||
req.body.model = "claude-3-5-sonnet@20240620";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "haiku":
|
|
||||||
req.body.model = "claude-3-5-haiku@20241022";
|
|
||||||
return;
|
|
||||||
case "opus":
|
|
||||||
// Add after model ids are announced late 2024
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fallback to Claude3 Sonnet
|
|
||||||
req.body.model = `claude-3-sonnet@${LATEST_GCP_SONNET_MINOR_VERSION}`;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const gcp = gcpRouter;
|
|
||||||
+36
-77
@@ -1,15 +1,21 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
import { Request, RequestHandler, Router } from "express";
|
||||||
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { v4 } from "uuid";
|
import { v4 } from "uuid";
|
||||||
import { GoogleAIKey, keyPool } from "../shared/key-management";
|
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
|
import { logger } from "../logger";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
|
createOnProxyReqHandler,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeSignedRequest,
|
finalizeSignedRequest,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { addGoogleAIKey } from "./middleware/request/mutators/add-google-ai-key";
|
createOnProxyResHandler,
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
ProxyResHandlerWithBody,
|
||||||
|
} from "./middleware/response";
|
||||||
|
import { addGoogleAIKey } from "./middleware/request/preprocessors/add-google-ai-key";
|
||||||
|
|
||||||
let modelsCache: any = null;
|
let modelsCache: any = null;
|
||||||
let modelsCacheTime = 0;
|
let modelsCacheTime = 0;
|
||||||
@@ -24,19 +30,9 @@ const getModelsResponse = () => {
|
|||||||
|
|
||||||
if (!config.googleAIKey) return { object: "list", data: [] };
|
if (!config.googleAIKey) return { object: "list", data: [] };
|
||||||
|
|
||||||
const keys = keyPool
|
const googleAIVariants = ["gemini-pro", "gemini-1.0-pro", "gemini-1.5-pro"];
|
||||||
.list()
|
|
||||||
.filter((k) => k.service === "google-ai") as GoogleAIKey[];
|
|
||||||
if (keys.length === 0) {
|
|
||||||
modelsCache = { object: "list", data: [] };
|
|
||||||
modelsCacheTime = new Date().getTime();
|
|
||||||
return modelsCache;
|
|
||||||
}
|
|
||||||
|
|
||||||
const modelIds = Array.from(
|
const models = googleAIVariants.map((id) => ({
|
||||||
new Set(keys.map((k) => k.modelIds).flat())
|
|
||||||
).filter((id) => id.startsWith("models/gemini"));
|
|
||||||
const models = modelIds.map((id) => ({
|
|
||||||
id,
|
id,
|
||||||
object: "model",
|
object: "model",
|
||||||
created: new Date().getTime(),
|
created: new Date().getTime(),
|
||||||
@@ -56,7 +52,8 @@ const handleModelRequest: RequestHandler = (_req, res) => {
|
|||||||
res.status(200).json(getModelsResponse());
|
res.status(200).json(getModelsResponse());
|
||||||
};
|
};
|
||||||
|
|
||||||
const googleAIBlockingResponseHandler: ProxyResHandlerWithBody = async (
|
/** Only used for non-streaming requests. */
|
||||||
|
const googleAIResponseHandler: ProxyResHandlerWithBody = async (
|
||||||
_proxyRes,
|
_proxyRes,
|
||||||
req,
|
req,
|
||||||
res,
|
res,
|
||||||
@@ -102,75 +99,37 @@ function transformGoogleAIResponse(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const googleAIProxy = createQueuedProxyMiddleware({
|
const googleAIProxy = createQueueMiddleware({
|
||||||
target: ({ signedRequest }) => {
|
beforeProxy: addGoogleAIKey,
|
||||||
if (!signedRequest) throw new Error("Must sign request before proxying");
|
proxyMiddleware: createProxyMiddleware({
|
||||||
const { protocol, hostname} = signedRequest;
|
target: "bad-target-will-be-rewritten",
|
||||||
return `${protocol}//${hostname}`;
|
router: ({ signedRequest }) => {
|
||||||
},
|
const { protocol, hostname, path } = signedRequest;
|
||||||
mutations: [addGoogleAIKey, finalizeSignedRequest],
|
return `${protocol}//${hostname}${path}`;
|
||||||
blockingResponseHandler: googleAIBlockingResponseHandler,
|
},
|
||||||
|
changeOrigin: true,
|
||||||
|
selfHandleResponse: true,
|
||||||
|
logger,
|
||||||
|
on: {
|
||||||
|
proxyReq: createOnProxyReqHandler({ pipeline: [finalizeSignedRequest] }),
|
||||||
|
proxyRes: createOnProxyResHandler([googleAIResponseHandler]),
|
||||||
|
error: handleProxyError,
|
||||||
|
},
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
const googleAIRouter = Router();
|
const googleAIRouter = Router();
|
||||||
googleAIRouter.get("/v1/models", handleModelRequest);
|
googleAIRouter.get("/v1/models", handleModelRequest);
|
||||||
|
|
||||||
// Native Google AI chat completion endpoint
|
|
||||||
googleAIRouter.post(
|
|
||||||
"/v1beta/models/:modelId:(generateContent|streamGenerateContent)",
|
|
||||||
ipLimiter,
|
|
||||||
createPreprocessorMiddleware(
|
|
||||||
{ inApi: "google-ai", outApi: "google-ai", service: "google-ai" },
|
|
||||||
{ beforeTransform: [maybeReassignModel], afterTransform: [setStreamFlag] }
|
|
||||||
),
|
|
||||||
googleAIProxy
|
|
||||||
);
|
|
||||||
|
|
||||||
// OpenAI-to-Google AI compatibility endpoint.
|
// OpenAI-to-Google AI compatibility endpoint.
|
||||||
googleAIRouter.post(
|
googleAIRouter.post(
|
||||||
"/v1/chat/completions",
|
"/v1/chat/completions",
|
||||||
ipLimiter,
|
ipLimiter,
|
||||||
createPreprocessorMiddleware(
|
createPreprocessorMiddleware({
|
||||||
{ inApi: "openai", outApi: "google-ai", service: "google-ai" },
|
inApi: "openai",
|
||||||
{ afterTransform: [maybeReassignModel] }
|
outApi: "google-ai",
|
||||||
),
|
service: "google-ai",
|
||||||
|
}),
|
||||||
googleAIProxy
|
googleAIProxy
|
||||||
);
|
);
|
||||||
|
|
||||||
function setStreamFlag(req: Request) {
|
|
||||||
const isStreaming = req.url.includes("streamGenerateContent");
|
|
||||||
if (isStreaming) {
|
|
||||||
req.body.stream = true;
|
|
||||||
req.isStreaming = true;
|
|
||||||
} else {
|
|
||||||
req.body.stream = false;
|
|
||||||
req.isStreaming = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Replaces requests for non-Google AI models with gemini-1.5-pro-latest.
|
|
||||||
* Also strips models/ from the beginning of the model IDs.
|
|
||||||
**/
|
|
||||||
function maybeReassignModel(req: Request) {
|
|
||||||
// Ensure model is on body as a lot of middleware will expect it.
|
|
||||||
const model = req.body.model || req.url.split("/").pop()?.split(":").shift();
|
|
||||||
if (!model) {
|
|
||||||
throw new Error("You must specify a model with your request.");
|
|
||||||
}
|
|
||||||
req.body.model = model;
|
|
||||||
|
|
||||||
const requested = model;
|
|
||||||
if (requested.startsWith("models/")) {
|
|
||||||
req.body.model = requested.slice("models/".length);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (requested.includes("gemini")) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
req.log.info({ requested }, "Reassigning model to gemini-1.5-pro-latest");
|
|
||||||
req.body.model = "gemini-1.5-pro-latest";
|
|
||||||
}
|
|
||||||
|
|
||||||
export const googleAI = googleAIRouter;
|
export const googleAI = googleAIRouter;
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import { Request, Response } from "express";
|
import { Request, Response } from "express";
|
||||||
import http from "http";
|
import http from "http";
|
||||||
import { Socket } from "net";
|
import httpProxy from "http-proxy";
|
||||||
import { ZodError } from "zod";
|
import { ZodError } from "zod";
|
||||||
import { generateErrorMessage } from "zod-error";
|
import { generateErrorMessage } from "zod-error";
|
||||||
import { HttpError } from "../../shared/errors";
|
|
||||||
import { assertNever } from "../../shared/utils";
|
import { assertNever } from "../../shared/utils";
|
||||||
import { QuotaExceededError } from "./request/preprocessors/apply-quota-limits";
|
import { QuotaExceededError } from "./request/preprocessors/apply-quota-limits";
|
||||||
import { sendErrorToClient } from "./response/error-generator";
|
import { sendErrorToClient } from "./response/error-generator";
|
||||||
|
import { HttpError } from "../../shared/errors";
|
||||||
|
|
||||||
const OPENAI_CHAT_COMPLETION_ENDPOINT = "/v1/chat/completions";
|
const OPENAI_CHAT_COMPLETION_ENDPOINT = "/v1/chat/completions";
|
||||||
const OPENAI_TEXT_COMPLETION_ENDPOINT = "/v1/completions";
|
const OPENAI_TEXT_COMPLETION_ENDPOINT = "/v1/completions";
|
||||||
@@ -16,7 +16,6 @@ const ANTHROPIC_COMPLETION_ENDPOINT = "/v1/complete";
|
|||||||
const ANTHROPIC_MESSAGES_ENDPOINT = "/v1/messages";
|
const ANTHROPIC_MESSAGES_ENDPOINT = "/v1/messages";
|
||||||
const ANTHROPIC_SONNET_COMPAT_ENDPOINT = "/v1/sonnet";
|
const ANTHROPIC_SONNET_COMPAT_ENDPOINT = "/v1/sonnet";
|
||||||
const ANTHROPIC_OPUS_COMPAT_ENDPOINT = "/v1/opus";
|
const ANTHROPIC_OPUS_COMPAT_ENDPOINT = "/v1/opus";
|
||||||
const GOOGLE_AI_COMPLETION_ENDPOINT = "/v1beta/models";
|
|
||||||
|
|
||||||
export function isTextGenerationRequest(req: Request) {
|
export function isTextGenerationRequest(req: Request) {
|
||||||
return (
|
return (
|
||||||
@@ -28,7 +27,6 @@ export function isTextGenerationRequest(req: Request) {
|
|||||||
ANTHROPIC_MESSAGES_ENDPOINT,
|
ANTHROPIC_MESSAGES_ENDPOINT,
|
||||||
ANTHROPIC_SONNET_COMPAT_ENDPOINT,
|
ANTHROPIC_SONNET_COMPAT_ENDPOINT,
|
||||||
ANTHROPIC_OPUS_COMPAT_ENDPOINT,
|
ANTHROPIC_OPUS_COMPAT_ENDPOINT,
|
||||||
GOOGLE_AI_COMPLETION_ENDPOINT,
|
|
||||||
].some((endpoint) => req.path.startsWith(endpoint))
|
].some((endpoint) => req.path.startsWith(endpoint))
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -56,13 +54,13 @@ export function sendProxyError(
|
|||||||
const msg =
|
const msg =
|
||||||
statusCode === 500
|
statusCode === 500
|
||||||
? `The proxy encountered an error while trying to process your prompt.`
|
? `The proxy encountered an error while trying to process your prompt.`
|
||||||
: `The proxy encountered an error while trying to send your prompt to the API.`;
|
: `The proxy encountered an error while trying to send your prompt to the upstream service.`;
|
||||||
|
|
||||||
sendErrorToClient({
|
sendErrorToClient({
|
||||||
options: {
|
options: {
|
||||||
format: req.inboundApi,
|
format: req.inboundApi,
|
||||||
title: `Proxy error (HTTP ${statusCode} ${statusMessage})`,
|
title: `Proxy error (HTTP ${statusCode} ${statusMessage})`,
|
||||||
message: `${msg} Further details are provided below.`,
|
message: `${msg} Further technical details are provided below.`,
|
||||||
obj: errorPayload,
|
obj: errorPayload,
|
||||||
reqId: req.id,
|
reqId: req.id,
|
||||||
model: req.body?.model,
|
model: req.body?.model,
|
||||||
@@ -72,23 +70,16 @@ export function sendProxyError(
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export const handleProxyError: httpProxy.ErrorCallback = (err, req, res) => {
|
||||||
* Handles errors thrown during preparation of a proxy request (before it is
|
req.log.error(err, `Error during http-proxy-middleware request`);
|
||||||
* sent to the upstream API), typically due to validation, quota, or other
|
classifyErrorAndSend(err, req as Request, res as Response);
|
||||||
* pre-flight checks. Depending on the error class, this function will send an
|
};
|
||||||
* appropriate error response to the client, streaming it if necessary.
|
|
||||||
*/
|
|
||||||
export const classifyErrorAndSend = (
|
export const classifyErrorAndSend = (
|
||||||
err: Error,
|
err: Error,
|
||||||
req: Request,
|
req: Request,
|
||||||
res: Response | Socket
|
res: Response
|
||||||
) => {
|
) => {
|
||||||
if (res instanceof Socket) {
|
|
||||||
// We should always have an Express response object here, but http-proxy's
|
|
||||||
// ErrorCallback type says it could be just a Socket.
|
|
||||||
req.log.error(err, "Caught error while proxying request to target but cannot send error response to client.");
|
|
||||||
return res.destroy();
|
|
||||||
}
|
|
||||||
try {
|
try {
|
||||||
const { statusCode, statusMessage, userMessage, ...errorDetails } =
|
const { statusCode, statusMessage, userMessage, ...errorDetails } =
|
||||||
classifyError(err);
|
classifyError(err);
|
||||||
@@ -230,12 +221,9 @@ export function getCompletionFromBody(req: Request, body: Record<string, any>) {
|
|||||||
switch (format) {
|
switch (format) {
|
||||||
case "openai":
|
case "openai":
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
// Few possible values:
|
// Can be null if the model wants to invoke tools rather than return a
|
||||||
// - choices[0].message.content
|
// completion.
|
||||||
// - choices[0].message with no content if model is invoking a tool
|
return body.choices[0].message.content || "";
|
||||||
return body.choices?.[0]?.message?.content || "";
|
|
||||||
case "mistral-text":
|
|
||||||
return body.outputs?.[0]?.text || "";
|
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
return body.choices[0].text;
|
return body.choices[0].text;
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
@@ -264,15 +252,7 @@ export function getCompletionFromBody(req: Request, body: Record<string, any>) {
|
|||||||
if ("choices" in body) {
|
if ("choices" in body) {
|
||||||
return body.choices[0].message.content;
|
return body.choices[0].message.content;
|
||||||
}
|
}
|
||||||
const text = body.candidates[0].content?.parts?.[0]?.text;
|
return body.candidates[0].content.parts[0].text;
|
||||||
if (!text) {
|
|
||||||
req.log.warn(
|
|
||||||
{ body: JSON.stringify(body) },
|
|
||||||
"Received empty Google AI text completion"
|
|
||||||
);
|
|
||||||
return "";
|
|
||||||
}
|
|
||||||
return text;
|
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
return body.data?.map((item: any) => item.url).join("\n");
|
return body.data?.map((item: any) => item.url).join("\n");
|
||||||
default:
|
default:
|
||||||
@@ -280,22 +260,22 @@ export function getCompletionFromBody(req: Request, body: Record<string, any>) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getModelFromBody(req: Request, resBody: Record<string, any>) {
|
export function getModelFromBody(req: Request, body: Record<string, any>) {
|
||||||
const format = req.outboundApi;
|
const format = req.outboundApi;
|
||||||
switch (format) {
|
switch (format) {
|
||||||
case "openai":
|
case "openai":
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
return resBody.model;
|
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
case "mistral-text":
|
return body.model;
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
case "google-ai":
|
|
||||||
// These formats don't have a model in the response body.
|
|
||||||
return req.body.model;
|
return req.body.model;
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
case "anthropic-text":
|
case "anthropic-text":
|
||||||
// Anthropic confirms the model in the response, but AWS Claude doesn't.
|
// Anthropic confirms the model in the response, but AWS Claude doesn't.
|
||||||
return resBody.model || req.body.model;
|
return body.model || req.body.model;
|
||||||
|
case "google-ai":
|
||||||
|
// Google doesn't confirm the model in the response.
|
||||||
|
return req.body.model;
|
||||||
default:
|
default:
|
||||||
assertNever(format);
|
assertNever(format);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,38 +1,42 @@
|
|||||||
import type { Request } from "express";
|
import type { Request } from "express";
|
||||||
|
import type { ClientRequest } from "http";
|
||||||
|
import type { ProxyReqCallback } from "http-proxy";
|
||||||
|
|
||||||
import { ProxyReqManager } from "./proxy-req-manager";
|
export { createOnProxyReqHandler } from "./onproxyreq-factory";
|
||||||
export {
|
export {
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
createEmbeddingsPreprocessorMiddleware,
|
createEmbeddingsPreprocessorMiddleware,
|
||||||
} from "./preprocessor-factory";
|
} from "./preprocessor-factory";
|
||||||
|
|
||||||
// Preprocessors (runs before request is queued, usually body transformation/validation)
|
// Express middleware (runs before http-proxy-middleware, can be async)
|
||||||
|
export { addAzureKey } from "./preprocessors/add-azure-key";
|
||||||
export { applyQuotaLimits } from "./preprocessors/apply-quota-limits";
|
export { applyQuotaLimits } from "./preprocessors/apply-quota-limits";
|
||||||
export { blockZoomerOrigins } from "./preprocessors/block-zoomer-origins";
|
export { validateContextSize } from "./preprocessors/validate-context-size";
|
||||||
export { countPromptTokens } from "./preprocessors/count-prompt-tokens";
|
export { countPromptTokens } from "./preprocessors/count-prompt-tokens";
|
||||||
export { languageFilter } from "./preprocessors/language-filter";
|
export { languageFilter } from "./preprocessors/language-filter";
|
||||||
export { setApiFormat } from "./preprocessors/set-api-format";
|
export { setApiFormat } from "./preprocessors/set-api-format";
|
||||||
|
export { signAwsRequest } from "./preprocessors/sign-aws-request";
|
||||||
export { transformOutboundPayload } from "./preprocessors/transform-outbound-payload";
|
export { transformOutboundPayload } from "./preprocessors/transform-outbound-payload";
|
||||||
export { validateContextSize } from "./preprocessors/validate-context-size";
|
|
||||||
export { validateModelFamily } from "./preprocessors/validate-model-family";
|
|
||||||
export { validateVision } from "./preprocessors/validate-vision";
|
|
||||||
|
|
||||||
// Proxy request mutators (runs every time request is dequeued, before proxying, usually for auth/signing)
|
// http-proxy-middleware callbacks (runs on onProxyReq, cannot be async)
|
||||||
export { addKey, addKeyForEmbeddingsRequest } from "./mutators/add-key";
|
export { addKey, addKeyForEmbeddingsRequest } from "./onproxyreq/add-key";
|
||||||
export { addAzureKey } from "./mutators/add-azure-key";
|
export { addAnthropicPreamble } from "./onproxyreq/add-anthropic-preamble";
|
||||||
export { finalizeBody } from "./mutators/finalize-body";
|
export { blockZoomerOrigins } from "./onproxyreq/block-zoomer-origins";
|
||||||
export { finalizeSignedRequest } from "./mutators/finalize-signed-request";
|
export { checkModelFamily } from "./onproxyreq/check-model-family";
|
||||||
export { signAwsRequest } from "./mutators/sign-aws-request";
|
export { finalizeBody } from "./onproxyreq/finalize-body";
|
||||||
export { signGcpRequest } from "./mutators/sign-vertex-ai-request";
|
export { finalizeSignedRequest } from "./onproxyreq/finalize-signed-request";
|
||||||
export { stripHeaders } from "./mutators/strip-headers";
|
export { stripHeaders } from "./onproxyreq/strip-headers";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Middleware that runs prior to the request being queued or handled by
|
* Middleware that runs prior to the request being handled by http-proxy-
|
||||||
* http-proxy-middleware. You will not have access to the proxied
|
* middleware.
|
||||||
* request/response objects since they have not yet been sent to the API.
|
|
||||||
*
|
*
|
||||||
* User will have been authenticated by the proxy's gatekeeper, but the request
|
* Async functions can be used here, but you will not have access to the proxied
|
||||||
* won't have been assigned an upstream API key yet.
|
* request/response objects, nor the data set by ProxyRequestMiddleware
|
||||||
|
* functions as they have not yet been run.
|
||||||
|
*
|
||||||
|
* User will have been authenticated by the time this middleware runs, but your
|
||||||
|
* request won't have been assigned an API key yet.
|
||||||
*
|
*
|
||||||
* Note that these functions only run once ever per request, even if the request
|
* Note that these functions only run once ever per request, even if the request
|
||||||
* is automatically retried by the request queue middleware.
|
* is automatically retried by the request queue middleware.
|
||||||
@@ -40,14 +44,17 @@ export { stripHeaders } from "./mutators/strip-headers";
|
|||||||
export type RequestPreprocessor = (req: Request) => void | Promise<void>;
|
export type RequestPreprocessor = (req: Request) => void | Promise<void>;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Middleware that runs immediately before the request is proxied to the
|
* Callbacks that run immediately before the request is sent to the API in
|
||||||
* upstream API, after dequeueing the request from the request queue.
|
* response to http-proxy-middleware's `proxyReq` event.
|
||||||
*
|
*
|
||||||
* Because these middleware may be run multiple times per request if a retryable
|
* Async functions cannot be used here as HPM's event emitter is not async and
|
||||||
* error occurs and the request put back in the queue, they must be idempotent.
|
* will not wait for the promise to resolve before sending the request.
|
||||||
* A change manager is provided to allow the middleware to make changes to the
|
*
|
||||||
* request which can be automatically reverted.
|
* Note that these functions may be run multiple times per request if the
|
||||||
|
* first attempt is rate limited and the request is automatically retried by the
|
||||||
|
* request queue middleware.
|
||||||
*/
|
*/
|
||||||
export type ProxyReqMutator = (
|
export type HPMRequestCallback = ProxyReqCallback<ClientRequest, Request>;
|
||||||
changeManager: ProxyReqManager
|
|
||||||
) => void | Promise<void>;
|
export const forceModel = (model: string) => (req: Request) =>
|
||||||
|
void (req.body.model = model);
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
import { keyPool } from "../../../../shared/key-management";
|
|
||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
export const addGoogleAIKey: ProxyReqMutator = (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
const inboundValid =
|
|
||||||
req.inboundApi === "openai" || req.inboundApi === "google-ai";
|
|
||||||
const outboundValid = req.outboundApi === "google-ai";
|
|
||||||
|
|
||||||
const serviceValid = req.service === "google-ai";
|
|
||||||
if (!inboundValid || !outboundValid || !serviceValid) {
|
|
||||||
throw new Error("addGoogleAIKey called on invalid request");
|
|
||||||
}
|
|
||||||
|
|
||||||
const model = req.body.model;
|
|
||||||
const key = keyPool.get(model, "google-ai");
|
|
||||||
manager.setKey(key);
|
|
||||||
|
|
||||||
req.log.info(
|
|
||||||
{ key: key.hash, model, stream: req.isStreaming },
|
|
||||||
"Assigned Google AI API key to request"
|
|
||||||
);
|
|
||||||
|
|
||||||
// https://generativelanguage.googleapis.com/v1beta/models/$MODEL_ID:generateContent?key=$API_KEY
|
|
||||||
// https://generativelanguage.googleapis.com/v1beta/models/$MODEL_ID:streamGenerateContent?key=${API_KEY}
|
|
||||||
const payload = { ...req.body, stream: undefined, model: undefined };
|
|
||||||
|
|
||||||
// TODO: this isn't actually signed, so the manager api is a little unclear
|
|
||||||
// with the ProxyReqManager refactor, it's probably no longer necesasry to
|
|
||||||
// do this because we can modify the path using Manager.setPath.
|
|
||||||
manager.setSignedRequest({
|
|
||||||
method: "POST",
|
|
||||||
protocol: "https:",
|
|
||||||
hostname: "generativelanguage.googleapis.com",
|
|
||||||
path: `/v1beta/models/${model}:${
|
|
||||||
req.isStreaming ? "streamGenerateContent?alt=sse&" : "generateContent?"
|
|
||||||
}key=${key.key}`,
|
|
||||||
headers: {
|
|
||||||
["host"]: `generativelanguage.googleapis.com`,
|
|
||||||
["content-type"]: "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify(payload),
|
|
||||||
});
|
|
||||||
};
|
|
||||||
@@ -1,22 +0,0 @@
|
|||||||
import type { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
/** Finalize the rewritten request body. Must be the last mutator. */
|
|
||||||
export const finalizeBody: ProxyReqMutator = (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
|
|
||||||
if (["POST", "PUT", "PATCH"].includes(req.method ?? "") && req.body) {
|
|
||||||
// For image generation requests, remove stream flag.
|
|
||||||
if (req.outboundApi === "openai-image") {
|
|
||||||
delete req.body.stream;
|
|
||||||
}
|
|
||||||
// For anthropic text to chat requests, remove undefined prompt.
|
|
||||||
if (req.outboundApi === "anthropic-chat") {
|
|
||||||
delete req.body.prompt;
|
|
||||||
}
|
|
||||||
|
|
||||||
const serialized =
|
|
||||||
typeof req.body === "string" ? req.body : JSON.stringify(req.body);
|
|
||||||
manager.setHeader("Content-Length", String(Buffer.byteLength(serialized)));
|
|
||||||
manager.setBody(serialized);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,32 +0,0 @@
|
|||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* For AWS/GCP/Azure/Google requests, the body is signed earlier in the request
|
|
||||||
* pipeline, before the proxy middleware. This function just assigns the path
|
|
||||||
* and headers to the proxy request.
|
|
||||||
*/
|
|
||||||
export const finalizeSignedRequest: ProxyReqMutator = (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
if (!req.signedRequest) {
|
|
||||||
throw new Error("Expected req.signedRequest to be set");
|
|
||||||
}
|
|
||||||
|
|
||||||
// The path depends on the selected model and the assigned key's region.
|
|
||||||
manager.setPath(req.signedRequest.path);
|
|
||||||
|
|
||||||
// Amazon doesn't want extra headers, so we need to remove all of them and
|
|
||||||
// reassign only the ones specified in the signed request.
|
|
||||||
const headers = req.signedRequest.headers;
|
|
||||||
Object.keys(headers).forEach((key) => {
|
|
||||||
manager.removeHeader(key);
|
|
||||||
});
|
|
||||||
Object.entries(req.signedRequest.headers).forEach(([key, value]) => {
|
|
||||||
manager.setHeader(key, value);
|
|
||||||
});
|
|
||||||
const serialized =
|
|
||||||
typeof req.signedRequest.body === "string"
|
|
||||||
? req.signedRequest.body
|
|
||||||
: JSON.stringify(req.signedRequest.body);
|
|
||||||
manager.setHeader("Content-Length", String(Buffer.byteLength(serialized)));
|
|
||||||
manager.setBody(serialized);
|
|
||||||
};
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
import express, { Request } from "express";
|
|
||||||
import { Sha256 } from "@aws-crypto/sha256-js";
|
|
||||||
import { SignatureV4 } from "@smithy/signature-v4";
|
|
||||||
import { HttpRequest } from "@smithy/protocol-http";
|
|
||||||
import {
|
|
||||||
AnthropicV1TextSchema,
|
|
||||||
AnthropicV1MessagesSchema,
|
|
||||||
} from "../../../../shared/api-schemas";
|
|
||||||
import { AwsBedrockKey, keyPool } from "../../../../shared/key-management";
|
|
||||||
import {
|
|
||||||
AWSMistralV1ChatCompletionsSchema,
|
|
||||||
AWSMistralV1TextCompletionsSchema,
|
|
||||||
} from "../../../../shared/api-schemas/mistral-ai";
|
|
||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
const AMZ_HOST =
|
|
||||||
process.env.AMZ_HOST || "bedrock-runtime.%REGION%.amazonaws.com";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Signs an outgoing AWS request with the appropriate headers modifies the
|
|
||||||
* request object in place to fix the path.
|
|
||||||
* This happens AFTER request transformation.
|
|
||||||
*/
|
|
||||||
export const signAwsRequest: ProxyReqMutator = async (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
const { model, stream } = req.body;
|
|
||||||
const key = keyPool.get(model, "aws") as AwsBedrockKey;
|
|
||||||
manager.setKey(key);
|
|
||||||
|
|
||||||
const credential = getCredentialParts(req);
|
|
||||||
const host = AMZ_HOST.replace("%REGION%", credential.region);
|
|
||||||
|
|
||||||
// AWS only uses 2023-06-01 and does not actually check this header, but we
|
|
||||||
// set it so that the stream adapter always selects the correct transformer.
|
|
||||||
manager.setHeader("anthropic-version", "2023-06-01");
|
|
||||||
|
|
||||||
// If our key has an inference profile compatible with the requested model,
|
|
||||||
// we want to use the inference profile instead of the model ID when calling
|
|
||||||
// InvokeModel as that will give us higher rate limits.
|
|
||||||
const profile =
|
|
||||||
key.inferenceProfileIds.find((p) => p.includes(model)) || model;
|
|
||||||
|
|
||||||
// Uses the AWS SDK to sign a request, then modifies our HPM proxy request
|
|
||||||
// with the headers generated by the SDK.
|
|
||||||
const newRequest = new HttpRequest({
|
|
||||||
method: "POST",
|
|
||||||
protocol: "https:",
|
|
||||||
hostname: host,
|
|
||||||
path: `/model/${profile}/invoke${stream ? "-with-response-stream" : ""}`,
|
|
||||||
headers: {
|
|
||||||
["Host"]: host,
|
|
||||||
["content-type"]: "application/json",
|
|
||||||
},
|
|
||||||
body: JSON.stringify(getStrictlyValidatedBodyForAws(req)),
|
|
||||||
});
|
|
||||||
|
|
||||||
if (stream) {
|
|
||||||
newRequest.headers["x-amzn-bedrock-accept"] = "application/json";
|
|
||||||
} else {
|
|
||||||
newRequest.headers["accept"] = "*/*";
|
|
||||||
}
|
|
||||||
|
|
||||||
const { body, inboundApi, outboundApi } = req;
|
|
||||||
req.log.info(
|
|
||||||
{ key: key.hash, model: body.model, profile, inboundApi, outboundApi },
|
|
||||||
"Assigned AWS credentials to request"
|
|
||||||
);
|
|
||||||
|
|
||||||
manager.setSignedRequest(await sign(newRequest, getCredentialParts(req)));
|
|
||||||
};
|
|
||||||
|
|
||||||
type Credential = {
|
|
||||||
accessKeyId: string;
|
|
||||||
secretAccessKey: string;
|
|
||||||
region: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
function getCredentialParts(req: express.Request): Credential {
|
|
||||||
const [accessKeyId, secretAccessKey, region] = req.key!.key.split(":");
|
|
||||||
|
|
||||||
if (!accessKeyId || !secretAccessKey || !region) {
|
|
||||||
req.log.error(
|
|
||||||
{ key: req.key!.hash },
|
|
||||||
"AWS_CREDENTIALS isn't correctly formatted; refer to the docs"
|
|
||||||
);
|
|
||||||
throw new Error("The key assigned to this request is invalid.");
|
|
||||||
}
|
|
||||||
|
|
||||||
return { accessKeyId, secretAccessKey, region };
|
|
||||||
}
|
|
||||||
|
|
||||||
async function sign(request: HttpRequest, credential: Credential) {
|
|
||||||
const { accessKeyId, secretAccessKey, region } = credential;
|
|
||||||
|
|
||||||
const signer = new SignatureV4({
|
|
||||||
sha256: Sha256,
|
|
||||||
credentials: { accessKeyId, secretAccessKey },
|
|
||||||
region,
|
|
||||||
service: "bedrock",
|
|
||||||
});
|
|
||||||
|
|
||||||
return signer.sign(request);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getStrictlyValidatedBodyForAws(req: Readonly<Request>): unknown {
|
|
||||||
// AWS uses vendor API formats but imposes additional (more strict) validation
|
|
||||||
// rules, namely that extraneous parameters are not allowed. We will validate
|
|
||||||
// using the vendor's zod schema but apply `.strip` to ensure that any
|
|
||||||
// extraneous parameters are removed.
|
|
||||||
let strippedParams: Record<string, unknown> = {};
|
|
||||||
switch (req.outboundApi) {
|
|
||||||
case "anthropic-text":
|
|
||||||
strippedParams = AnthropicV1TextSchema.pick({
|
|
||||||
prompt: true,
|
|
||||||
max_tokens_to_sample: true,
|
|
||||||
stop_sequences: true,
|
|
||||||
temperature: true,
|
|
||||||
top_k: true,
|
|
||||||
top_p: true,
|
|
||||||
})
|
|
||||||
.strip()
|
|
||||||
.parse(req.body);
|
|
||||||
break;
|
|
||||||
case "anthropic-chat":
|
|
||||||
strippedParams = AnthropicV1MessagesSchema.pick({
|
|
||||||
messages: true,
|
|
||||||
system: true,
|
|
||||||
max_tokens: true,
|
|
||||||
stop_sequences: true,
|
|
||||||
temperature: true,
|
|
||||||
top_k: true,
|
|
||||||
top_p: true,
|
|
||||||
})
|
|
||||||
.strip()
|
|
||||||
.parse(req.body);
|
|
||||||
strippedParams.anthropic_version = "bedrock-2023-05-31";
|
|
||||||
break;
|
|
||||||
case "mistral-ai":
|
|
||||||
strippedParams = AWSMistralV1ChatCompletionsSchema.parse(req.body);
|
|
||||||
break;
|
|
||||||
case "mistral-text":
|
|
||||||
strippedParams = AWSMistralV1TextCompletionsSchema.parse(req.body);
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new Error("Unexpected outbound API for AWS.");
|
|
||||||
}
|
|
||||||
return strippedParams;
|
|
||||||
}
|
|
||||||
@@ -1,75 +0,0 @@
|
|||||||
import { AnthropicV1MessagesSchema } from "../../../../shared/api-schemas";
|
|
||||||
import { GcpKey, keyPool } from "../../../../shared/key-management";
|
|
||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
import {
|
|
||||||
getCredentialsFromGcpKey,
|
|
||||||
refreshGcpAccessToken,
|
|
||||||
} from "../../../../shared/key-management/gcp/oauth";
|
|
||||||
|
|
||||||
const GCP_HOST = process.env.GCP_HOST || "%REGION%-aiplatform.googleapis.com";
|
|
||||||
|
|
||||||
export const signGcpRequest: ProxyReqMutator = async (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
const serviceValid = req.service === "gcp";
|
|
||||||
if (!serviceValid) {
|
|
||||||
throw new Error("addVertexAIKey called on invalid request");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!req.body?.model) {
|
|
||||||
throw new Error("You must specify a model with your request.");
|
|
||||||
}
|
|
||||||
|
|
||||||
const { model } = req.body;
|
|
||||||
const key: GcpKey = keyPool.get(model, "gcp") as GcpKey;
|
|
||||||
|
|
||||||
if (!key.accessToken || Date.now() > key.accessTokenExpiresAt) {
|
|
||||||
const [token, durationSec] = await refreshGcpAccessToken(key);
|
|
||||||
keyPool.update(key, {
|
|
||||||
accessToken: token,
|
|
||||||
accessTokenExpiresAt: Date.now() + durationSec * 1000 * 0.95,
|
|
||||||
} as GcpKey);
|
|
||||||
// nb: key received by `get` is a clone and will not have the new access
|
|
||||||
// token we just set, so it must be manually updated.
|
|
||||||
key.accessToken = token;
|
|
||||||
}
|
|
||||||
|
|
||||||
manager.setKey(key);
|
|
||||||
req.log.info({ key: key.hash, model }, "Assigned GCP key to request");
|
|
||||||
|
|
||||||
// TODO: This should happen in transform-outbound-payload.ts
|
|
||||||
// TODO: Support tools
|
|
||||||
let strippedParams: Record<string, unknown>;
|
|
||||||
strippedParams = AnthropicV1MessagesSchema.pick({
|
|
||||||
messages: true,
|
|
||||||
system: true,
|
|
||||||
max_tokens: true,
|
|
||||||
stop_sequences: true,
|
|
||||||
temperature: true,
|
|
||||||
top_k: true,
|
|
||||||
top_p: true,
|
|
||||||
stream: true,
|
|
||||||
})
|
|
||||||
.strip()
|
|
||||||
.parse(req.body);
|
|
||||||
strippedParams.anthropic_version = "vertex-2023-10-16";
|
|
||||||
|
|
||||||
const credential = await getCredentialsFromGcpKey(key);
|
|
||||||
|
|
||||||
const host = GCP_HOST.replace("%REGION%", credential.region);
|
|
||||||
// GCP doesn't use the anthropic-version header, but we set it to ensure the
|
|
||||||
// stream adapter selects the correct transformer.
|
|
||||||
manager.setHeader("anthropic-version", "2023-06-01");
|
|
||||||
|
|
||||||
manager.setSignedRequest({
|
|
||||||
method: "POST",
|
|
||||||
protocol: "https:",
|
|
||||||
hostname: host,
|
|
||||||
path: `/v1/projects/${credential.projectId}/locations/${credential.region}/publishers/anthropic/models/${model}:streamRawPredict`,
|
|
||||||
headers: {
|
|
||||||
["host"]: host,
|
|
||||||
["content-type"]: "application/json",
|
|
||||||
["authorization"]: `Bearer ${key.accessToken}`,
|
|
||||||
},
|
|
||||||
body: JSON.stringify(strippedParams),
|
|
||||||
});
|
|
||||||
};
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Removes origin and referer headers before sending the request to the API for
|
|
||||||
* privacy reasons.
|
|
||||||
*/
|
|
||||||
export const stripHeaders: ProxyReqMutator = (manager) => {
|
|
||||||
manager.removeHeader("origin");
|
|
||||||
manager.removeHeader("referer");
|
|
||||||
|
|
||||||
// Some APIs refuse requests coming from browsers to discourage embedding
|
|
||||||
// API keys in client-side code, so we must remove all CORS/fetch headers.
|
|
||||||
Object.keys(manager.request.headers).forEach((key) => {
|
|
||||||
if (key.startsWith("sec-")) {
|
|
||||||
manager.removeHeader(key);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
manager.removeHeader("tailscale-user-login");
|
|
||||||
manager.removeHeader("tailscale-user-name");
|
|
||||||
manager.removeHeader("tailscale-headers-info");
|
|
||||||
manager.removeHeader("tailscale-user-profile-pic");
|
|
||||||
manager.removeHeader("cf-connecting-ip");
|
|
||||||
manager.removeHeader("cf-ray");
|
|
||||||
manager.removeHeader("cf-visitor");
|
|
||||||
manager.removeHeader("cf-warp-tag-id");
|
|
||||||
manager.removeHeader("forwarded");
|
|
||||||
manager.removeHeader("true-client-ip");
|
|
||||||
manager.removeHeader("x-forwarded-for");
|
|
||||||
manager.removeHeader("x-forwarded-host");
|
|
||||||
manager.removeHeader("x-forwarded-proto");
|
|
||||||
manager.removeHeader("x-real-ip");
|
|
||||||
};
|
|
||||||
@@ -0,0 +1,45 @@
|
|||||||
|
import {
|
||||||
|
applyQuotaLimits,
|
||||||
|
blockZoomerOrigins,
|
||||||
|
checkModelFamily,
|
||||||
|
HPMRequestCallback,
|
||||||
|
stripHeaders,
|
||||||
|
} from "./index";
|
||||||
|
|
||||||
|
type ProxyReqHandlerFactoryOptions = { pipeline: HPMRequestCallback[] };
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns an http-proxy-middleware request handler that runs the given set of
|
||||||
|
* onProxyReq callback functions in sequence.
|
||||||
|
*
|
||||||
|
* These will run each time a request is proxied, including on automatic retries
|
||||||
|
* by the queue after encountering a rate limit.
|
||||||
|
*/
|
||||||
|
export const createOnProxyReqHandler = ({
|
||||||
|
pipeline,
|
||||||
|
}: ProxyReqHandlerFactoryOptions): HPMRequestCallback => {
|
||||||
|
const callbackPipeline = [
|
||||||
|
checkModelFamily,
|
||||||
|
applyQuotaLimits,
|
||||||
|
blockZoomerOrigins,
|
||||||
|
stripHeaders,
|
||||||
|
...pipeline,
|
||||||
|
];
|
||||||
|
return (proxyReq, req, res, options) => {
|
||||||
|
// The streaming flag must be set before any other onProxyReq handler runs,
|
||||||
|
// as it may influence the behavior of subsequent handlers.
|
||||||
|
// Image generation requests can't be streamed.
|
||||||
|
// TODO: this flag is set in too many places
|
||||||
|
req.isStreaming =
|
||||||
|
req.isStreaming || req.body.stream === true || req.body.stream === "true";
|
||||||
|
req.body.stream = req.isStreaming;
|
||||||
|
|
||||||
|
try {
|
||||||
|
for (const fn of callbackPipeline) {
|
||||||
|
fn(proxyReq, req, res, options);
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
proxyReq.destroy(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
import { AnthropicKey, Key } from "../../../../shared/key-management";
|
||||||
|
import { isTextGenerationRequest } from "../../common";
|
||||||
|
import { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Some keys require the prompt to start with `\n\nHuman:`. There is no way to
|
||||||
|
* know this without trying to send the request and seeing if it fails. If a
|
||||||
|
* key is marked as requiring a preamble, it will be added here.
|
||||||
|
*/
|
||||||
|
export const addAnthropicPreamble: HPMRequestCallback = (_proxyReq, req) => {
|
||||||
|
if (
|
||||||
|
!isTextGenerationRequest(req) ||
|
||||||
|
req.key?.service !== "anthropic" ||
|
||||||
|
req.outboundApi !== "anthropic-text"
|
||||||
|
) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let preamble = "";
|
||||||
|
let prompt = req.body.prompt;
|
||||||
|
assertAnthropicKey(req.key);
|
||||||
|
if (req.key.requiresPreamble && prompt) {
|
||||||
|
preamble = prompt.startsWith("\n\nHuman:") ? "" : "\n\nHuman:";
|
||||||
|
req.log.debug({ key: req.key.hash, preamble }, "Adding preamble to prompt");
|
||||||
|
}
|
||||||
|
req.body.prompt = preamble + prompt;
|
||||||
|
};
|
||||||
|
|
||||||
|
function assertAnthropicKey(key: Key): asserts key is AnthropicKey {
|
||||||
|
if (key.service !== "anthropic") {
|
||||||
|
throw new Error(`Expected an Anthropic key, got '${key.service}'`);
|
||||||
|
}
|
||||||
|
}
|
||||||
+23
-37
@@ -1,13 +1,9 @@
|
|||||||
import { AnthropicChatMessage } from "../../../../shared/api-schemas";
|
|
||||||
import { containsImageContent } from "../../../../shared/api-schemas/anthropic";
|
|
||||||
import { Key, OpenAIKey, keyPool } from "../../../../shared/key-management";
|
import { Key, OpenAIKey, keyPool } from "../../../../shared/key-management";
|
||||||
import { isEmbeddingsRequest } from "../../common";
|
import { isEmbeddingsRequest } from "../../common";
|
||||||
|
import { HPMRequestCallback } from "../index";
|
||||||
import { assertNever } from "../../../../shared/utils";
|
import { assertNever } from "../../../../shared/utils";
|
||||||
import { ProxyReqMutator } from "../index";
|
|
||||||
|
|
||||||
export const addKey: ProxyReqMutator = (manager) => {
|
|
||||||
const req = manager.request;
|
|
||||||
|
|
||||||
|
export const addKey: HPMRequestCallback = (proxyReq, req) => {
|
||||||
let assignedKey: Key;
|
let assignedKey: Key;
|
||||||
const { service, inboundApi, outboundApi, body } = req;
|
const { service, inboundApi, outboundApi, body } = req;
|
||||||
|
|
||||||
@@ -23,27 +19,17 @@ export const addKey: ProxyReqMutator = (manager) => {
|
|||||||
throw new Error("You must specify a model with your request.");
|
throw new Error("You must specify a model with your request.");
|
||||||
}
|
}
|
||||||
|
|
||||||
let needsMultimodal = false;
|
|
||||||
if (outboundApi === "anthropic-chat") {
|
|
||||||
needsMultimodal = containsImageContent(
|
|
||||||
body.messages as AnthropicChatMessage[]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (inboundApi === outboundApi) {
|
if (inboundApi === outboundApi) {
|
||||||
assignedKey = keyPool.get(body.model, service, needsMultimodal);
|
assignedKey = keyPool.get(body.model, service);
|
||||||
} else {
|
} else {
|
||||||
switch (outboundApi) {
|
switch (outboundApi) {
|
||||||
// If we are translating between API formats we may need to select a model
|
// If we are translating between API formats we may need to select a model
|
||||||
// for the user, because the provided model is for the inbound API.
|
// for the user, because the provided model is for the inbound API.
|
||||||
// TODO: This whole else condition is probably no longer needed since API
|
// TODO: This whole else condition is probably no longer needed since API
|
||||||
// translation now reassigns the model earlier in the request pipeline.
|
// translation now reassigns the model earlier in the request pipeline.
|
||||||
case "anthropic-text":
|
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
case "mistral-ai":
|
case "anthropic-text":
|
||||||
case "mistral-text":
|
assignedKey = keyPool.get("claude-v1", service);
|
||||||
case "google-ai":
|
|
||||||
assignedKey = keyPool.get(body.model, service);
|
|
||||||
break;
|
break;
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
assignedKey = keyPool.get("gpt-3.5-turbo-instruct", service);
|
assignedKey = keyPool.get("gpt-3.5-turbo-instruct", service);
|
||||||
@@ -52,15 +38,17 @@ export const addKey: ProxyReqMutator = (manager) => {
|
|||||||
assignedKey = keyPool.get("dall-e-3", service);
|
assignedKey = keyPool.get("dall-e-3", service);
|
||||||
break;
|
break;
|
||||||
case "openai":
|
case "openai":
|
||||||
|
case "google-ai":
|
||||||
|
case "mistral-ai":
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Outbound API ${outboundApi} is not supported for ${inboundApi}`
|
`add-key should not be called for outbound API ${outboundApi}`
|
||||||
);
|
);
|
||||||
default:
|
default:
|
||||||
assertNever(outboundApi);
|
assertNever(outboundApi);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
manager.setKey(assignedKey);
|
req.key = assignedKey;
|
||||||
req.log.info(
|
req.log.info(
|
||||||
{ key: assignedKey.hash, model: body.model, inboundApi, outboundApi },
|
{ key: assignedKey.hash, model: body.model, inboundApi, outboundApi },
|
||||||
"Assigned key to request"
|
"Assigned key to request"
|
||||||
@@ -69,27 +57,23 @@ export const addKey: ProxyReqMutator = (manager) => {
|
|||||||
// TODO: KeyProvider should assemble all necessary headers
|
// TODO: KeyProvider should assemble all necessary headers
|
||||||
switch (assignedKey.service) {
|
switch (assignedKey.service) {
|
||||||
case "anthropic":
|
case "anthropic":
|
||||||
manager.setHeader("X-API-Key", assignedKey.key);
|
proxyReq.setHeader("X-API-Key", assignedKey.key);
|
||||||
if (!manager.request.headers["anthropic-version"]) {
|
|
||||||
manager.setHeader("anthropic-version", "2023-06-01");
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case "openai":
|
case "openai":
|
||||||
const key: OpenAIKey = assignedKey as OpenAIKey;
|
const key: OpenAIKey = assignedKey as OpenAIKey;
|
||||||
if (key.organizationId && !key.key.includes("svcacct")) {
|
if (key.organizationId) {
|
||||||
manager.setHeader("OpenAI-Organization", key.organizationId);
|
proxyReq.setHeader("OpenAI-Organization", key.organizationId);
|
||||||
}
|
}
|
||||||
manager.setHeader("Authorization", `Bearer ${assignedKey.key}`);
|
proxyReq.setHeader("Authorization", `Bearer ${assignedKey.key}`);
|
||||||
break;
|
break;
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
manager.setHeader("Authorization", `Bearer ${assignedKey.key}`);
|
proxyReq.setHeader("Authorization", `Bearer ${assignedKey.key}`);
|
||||||
break;
|
break;
|
||||||
case "azure":
|
case "azure":
|
||||||
const azureKey = assignedKey.key;
|
const azureKey = assignedKey.key;
|
||||||
manager.setHeader("api-key", azureKey);
|
proxyReq.setHeader("api-key", azureKey);
|
||||||
break;
|
break;
|
||||||
case "aws":
|
case "aws":
|
||||||
case "gcp":
|
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
throw new Error("add-key should not be used for this service.");
|
throw new Error("add-key should not be used for this service.");
|
||||||
default:
|
default:
|
||||||
@@ -101,8 +85,10 @@ export const addKey: ProxyReqMutator = (manager) => {
|
|||||||
* Special case for embeddings requests which don't go through the normal
|
* Special case for embeddings requests which don't go through the normal
|
||||||
* request pipeline.
|
* request pipeline.
|
||||||
*/
|
*/
|
||||||
export const addKeyForEmbeddingsRequest: ProxyReqMutator = (manager) => {
|
export const addKeyForEmbeddingsRequest: HPMRequestCallback = (
|
||||||
const req = manager.request;
|
proxyReq,
|
||||||
|
req
|
||||||
|
) => {
|
||||||
if (!isEmbeddingsRequest(req)) {
|
if (!isEmbeddingsRequest(req)) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"addKeyForEmbeddingsRequest called on non-embeddings request"
|
"addKeyForEmbeddingsRequest called on non-embeddings request"
|
||||||
@@ -113,18 +99,18 @@ export const addKeyForEmbeddingsRequest: ProxyReqMutator = (manager) => {
|
|||||||
throw new Error("Embeddings requests must be from OpenAI");
|
throw new Error("Embeddings requests must be from OpenAI");
|
||||||
}
|
}
|
||||||
|
|
||||||
manager.setBody({ input: req.body.input, model: "text-embedding-ada-002" });
|
req.body = { input: req.body.input, model: "text-embedding-ada-002" };
|
||||||
|
|
||||||
const key = keyPool.get("text-embedding-ada-002", "openai") as OpenAIKey;
|
const key = keyPool.get("text-embedding-ada-002", "openai") as OpenAIKey;
|
||||||
|
|
||||||
manager.setKey(key);
|
req.key = key;
|
||||||
req.log.info(
|
req.log.info(
|
||||||
{ key: key.hash, toApi: req.outboundApi },
|
{ key: key.hash, toApi: req.outboundApi },
|
||||||
"Assigned Turbo key to embeddings request"
|
"Assigned Turbo key to embeddings request"
|
||||||
);
|
);
|
||||||
|
|
||||||
manager.setHeader("Authorization", `Bearer ${key.key}`);
|
proxyReq.setHeader("Authorization", `Bearer ${key.key}`);
|
||||||
if (key.organizationId) {
|
if (key.organizationId) {
|
||||||
manager.setHeader("OpenAI-Organization", key.organizationId);
|
proxyReq.setHeader("OpenAI-Organization", key.organizationId);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
+2
-2
@@ -1,4 +1,4 @@
|
|||||||
import { RequestPreprocessor } from "../index";
|
import { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
const DISALLOWED_ORIGIN_SUBSTRINGS = "janitorai.com,janitor.ai".split(",");
|
const DISALLOWED_ORIGIN_SUBSTRINGS = "janitorai.com,janitor.ai".split(",");
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ class ZoomerForbiddenError extends Error {
|
|||||||
* Blocks requests from Janitor AI users with a fake, scary error message so I
|
* Blocks requests from Janitor AI users with a fake, scary error message so I
|
||||||
* stop getting emails asking for tech support.
|
* stop getting emails asking for tech support.
|
||||||
*/
|
*/
|
||||||
export const blockZoomerOrigins: RequestPreprocessor = (req) => {
|
export const blockZoomerOrigins: HPMRequestCallback = (_proxyReq, req) => {
|
||||||
const origin = req.headers.origin || req.headers.referer;
|
const origin = req.headers.origin || req.headers.referer;
|
||||||
if (origin && DISALLOWED_ORIGIN_SUBSTRINGS.some((s) => origin.includes(s))) {
|
if (origin && DISALLOWED_ORIGIN_SUBSTRINGS.some((s) => origin.includes(s))) {
|
||||||
// Venus-derivatives send a test prompt to check if the proxy is working.
|
// Venus-derivatives send a test prompt to check if the proxy is working.
|
||||||
+4
-6
@@ -1,16 +1,14 @@
|
|||||||
|
import { HPMRequestCallback } from "../index";
|
||||||
import { config } from "../../../../config";
|
import { config } from "../../../../config";
|
||||||
import { ForbiddenError } from "../../../../shared/errors";
|
import { ForbiddenError } from "../../../../shared/errors";
|
||||||
import { getModelFamilyForRequest } from "../../../../shared/models";
|
import { getModelFamilyForRequest } from "../../../../shared/models";
|
||||||
import { RequestPreprocessor } from "../index";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ensures the selected model family is enabled by the proxy configuration.
|
* Ensures the selected model family is enabled by the proxy configuration.
|
||||||
*/
|
**/
|
||||||
export const validateModelFamily: RequestPreprocessor = (req) => {
|
export const checkModelFamily: HPMRequestCallback = (_proxyReq, req, res) => {
|
||||||
const family = getModelFamilyForRequest(req);
|
const family = getModelFamilyForRequest(req);
|
||||||
if (!config.allowedModelFamilies.includes(family)) {
|
if (!config.allowedModelFamilies.includes(family)) {
|
||||||
throw new ForbiddenError(
|
throw new ForbiddenError(`Model family '${family}' is not enabled on this proxy`);
|
||||||
`Model family '${family}' is not enabled on this proxy`
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
import { fixRequestBody } from "http-proxy-middleware";
|
||||||
|
import type { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
|
/** Finalize the rewritten request body. Must be the last rewriter. */
|
||||||
|
export const finalizeBody: HPMRequestCallback = (proxyReq, req) => {
|
||||||
|
if (["POST", "PUT", "PATCH"].includes(req.method ?? "") && req.body) {
|
||||||
|
// For image generation requests, remove stream flag.
|
||||||
|
if (req.outboundApi === "openai-image") {
|
||||||
|
delete req.body.stream;
|
||||||
|
}
|
||||||
|
// For anthropic text to chat requests, remove undefined prompt.
|
||||||
|
if (req.outboundApi === "anthropic-chat") {
|
||||||
|
delete req.body.prompt;
|
||||||
|
}
|
||||||
|
|
||||||
|
const updatedBody = JSON.stringify(req.body);
|
||||||
|
proxyReq.setHeader("Content-Length", Buffer.byteLength(updatedBody));
|
||||||
|
(req as any).rawBody = Buffer.from(updatedBody);
|
||||||
|
|
||||||
|
// body-parser and http-proxy-middleware don't play nice together
|
||||||
|
fixRequestBody(proxyReq, req);
|
||||||
|
}
|
||||||
|
};
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
import type { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* For AWS/Azure/Google requests, the body is signed earlier in the request
|
||||||
|
* pipeline, before the proxy middleware. This function just assigns the path
|
||||||
|
* and headers to the proxy request.
|
||||||
|
*/
|
||||||
|
export const finalizeSignedRequest: HPMRequestCallback = (proxyReq, req) => {
|
||||||
|
if (!req.signedRequest) {
|
||||||
|
throw new Error("Expected req.signedRequest to be set");
|
||||||
|
}
|
||||||
|
|
||||||
|
// The path depends on the selected model and the assigned key's region.
|
||||||
|
proxyReq.path = req.signedRequest.path;
|
||||||
|
|
||||||
|
// Amazon doesn't want extra headers, so we need to remove all of them and
|
||||||
|
// reassign only the ones specified in the signed request.
|
||||||
|
proxyReq.getRawHeaderNames().forEach(proxyReq.removeHeader.bind(proxyReq));
|
||||||
|
Object.entries(req.signedRequest.headers).forEach(([key, value]) => {
|
||||||
|
proxyReq.setHeader(key, value);
|
||||||
|
});
|
||||||
|
|
||||||
|
// Don't use fixRequestBody here because it adds a content-length header.
|
||||||
|
// Amazon doesn't want that and it breaks the signature.
|
||||||
|
proxyReq.write(req.signedRequest.body);
|
||||||
|
};
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
import { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Removes origin and referer headers before sending the request to the API for
|
||||||
|
* privacy reasons.
|
||||||
|
**/
|
||||||
|
export const stripHeaders: HPMRequestCallback = (proxyReq) => {
|
||||||
|
proxyReq.setHeader("origin", "");
|
||||||
|
proxyReq.setHeader("referer", "");
|
||||||
|
|
||||||
|
proxyReq.removeHeader("cf-connecting-ip");
|
||||||
|
proxyReq.removeHeader("forwarded");
|
||||||
|
proxyReq.removeHeader("true-client-ip");
|
||||||
|
proxyReq.removeHeader("x-forwarded-for");
|
||||||
|
proxyReq.removeHeader("x-real-ip");
|
||||||
|
};
|
||||||
@@ -4,15 +4,11 @@ import { initializeSseStream } from "../../../shared/streaming";
|
|||||||
import { classifyErrorAndSend } from "../common";
|
import { classifyErrorAndSend } from "../common";
|
||||||
import {
|
import {
|
||||||
RequestPreprocessor,
|
RequestPreprocessor,
|
||||||
blockZoomerOrigins,
|
validateContextSize,
|
||||||
countPromptTokens,
|
countPromptTokens,
|
||||||
languageFilter,
|
|
||||||
setApiFormat,
|
setApiFormat,
|
||||||
transformOutboundPayload,
|
transformOutboundPayload,
|
||||||
validateContextSize,
|
languageFilter,
|
||||||
validateModelFamily,
|
|
||||||
validateVision,
|
|
||||||
applyQuotaLimits,
|
|
||||||
} from ".";
|
} from ".";
|
||||||
|
|
||||||
type RequestPreprocessorOptions = {
|
type RequestPreprocessorOptions = {
|
||||||
@@ -33,15 +29,14 @@ type RequestPreprocessorOptions = {
|
|||||||
/**
|
/**
|
||||||
* Returns a middleware function that processes the request body into the given
|
* Returns a middleware function that processes the request body into the given
|
||||||
* API format, and then sequentially runs the given additional preprocessors.
|
* API format, and then sequentially runs the given additional preprocessors.
|
||||||
* These should be used for validation and transformations that only need to
|
|
||||||
* happen once per request.
|
|
||||||
*
|
*
|
||||||
* These run first in the request lifecycle, a single time per request before it
|
* These run first in the request lifecycle, a single time per request before it
|
||||||
* is added to the request queue. They aren't run again if the request is
|
* is added to the request queue. They aren't run again if the request is
|
||||||
* re-attempted after a rate limit.
|
* re-attempted after a rate limit.
|
||||||
*
|
*
|
||||||
* To run functions against requests every time they are re-attempted, write a
|
* To run a preprocessor on every re-attempt, pass it to createQueueMiddleware.
|
||||||
* ProxyReqMutator and pass it to createQueuedProxyMiddleware instead.
|
* It will run after these preprocessors, but before the request is sent to
|
||||||
|
* http-proxy-middleware.
|
||||||
*/
|
*/
|
||||||
export const createPreprocessorMiddleware = (
|
export const createPreprocessorMiddleware = (
|
||||||
apiFormat: Parameters<typeof setApiFormat>[0],
|
apiFormat: Parameters<typeof setApiFormat>[0],
|
||||||
@@ -49,16 +44,12 @@ export const createPreprocessorMiddleware = (
|
|||||||
): RequestHandler => {
|
): RequestHandler => {
|
||||||
const preprocessors: RequestPreprocessor[] = [
|
const preprocessors: RequestPreprocessor[] = [
|
||||||
setApiFormat(apiFormat),
|
setApiFormat(apiFormat),
|
||||||
blockZoomerOrigins,
|
|
||||||
...(beforeTransform ?? []),
|
...(beforeTransform ?? []),
|
||||||
transformOutboundPayload,
|
transformOutboundPayload,
|
||||||
countPromptTokens,
|
countPromptTokens,
|
||||||
languageFilter,
|
languageFilter,
|
||||||
...(afterTransform ?? []),
|
...(afterTransform ?? []),
|
||||||
validateContextSize,
|
validateContextSize,
|
||||||
validateVision,
|
|
||||||
validateModelFamily,
|
|
||||||
applyQuotaLimits,
|
|
||||||
];
|
];
|
||||||
return async (...args) => executePreprocessors(preprocessors, args);
|
return async (...args) => executePreprocessors(preprocessors, args);
|
||||||
};
|
};
|
||||||
@@ -90,10 +81,10 @@ async function executePreprocessors(
|
|||||||
next();
|
next();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
if (error.constructor.name === "ZodError") {
|
if (error.constructor.name === "ZodError") {
|
||||||
const issues = error?.issues
|
const msg = error?.issues
|
||||||
?.map((issue: ZodIssue) => `${issue.path.join(".")}: ${issue.message}`)
|
?.map((issue: ZodIssue) => issue.message)
|
||||||
.join("; ");
|
.join("; ");
|
||||||
req.log.warn({ issues }, "Prompt failed preprocessor validation.");
|
req.log.info(msg, "Prompt validation failed.");
|
||||||
} else {
|
} else {
|
||||||
req.log.error(error, "Error while executing request preprocessor");
|
req.log.error(error, "Error while executing request preprocessor");
|
||||||
}
|
}
|
||||||
@@ -143,21 +134,14 @@ const handleTestMessage: RequestHandler = (req, res) => {
|
|||||||
completion: "Hello!",
|
completion: "Hello!",
|
||||||
// anthropic chat
|
// anthropic chat
|
||||||
content: [{ type: "text", text: "Hello!" }],
|
content: [{ type: "text", text: "Hello!" }],
|
||||||
// gemini
|
|
||||||
candidates: [
|
|
||||||
{
|
|
||||||
content: { parts: [{ text: "Hello!" }] },
|
|
||||||
finishReason: "stop",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
proxy_note:
|
proxy_note:
|
||||||
"SillyTavern connection test detected. Your prompt was not sent to the actual model and this response was generated by the proxy.",
|
"This response was generated by the proxy's test message handler and did not go to the API.",
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function isTestMessage(body: any) {
|
function isTestMessage(body: any) {
|
||||||
const { messages, prompt, contents } = body;
|
const { messages, prompt } = body;
|
||||||
|
|
||||||
if (messages) {
|
if (messages) {
|
||||||
return (
|
return (
|
||||||
@@ -165,8 +149,6 @@ function isTestMessage(body: any) {
|
|||||||
messages[0].role === "user" &&
|
messages[0].role === "user" &&
|
||||||
messages[0].content === "Hi"
|
messages[0].content === "Hi"
|
||||||
);
|
);
|
||||||
} else if (contents) {
|
|
||||||
return contents.length === 1 && contents[0].parts[0]?.text === "Hi";
|
|
||||||
} else {
|
} else {
|
||||||
return (
|
return (
|
||||||
prompt?.trim() === "Human: Hi\n\nAssistant:" ||
|
prompt?.trim() === "Human: Hi\n\nAssistant:" ||
|
||||||
|
|||||||
+7
-13
@@ -3,16 +3,14 @@ import {
|
|||||||
AzureOpenAIKey,
|
AzureOpenAIKey,
|
||||||
keyPool,
|
keyPool,
|
||||||
} from "../../../../shared/key-management";
|
} from "../../../../shared/key-management";
|
||||||
import { ProxyReqMutator } from "../index";
|
import { RequestPreprocessor } from "../index";
|
||||||
|
|
||||||
export const addAzureKey: ProxyReqMutator = async (manager) => {
|
export const addAzureKey: RequestPreprocessor = (req) => {
|
||||||
const req = manager.request;
|
|
||||||
const validAPIs: APIFormat[] = ["openai", "openai-image"];
|
const validAPIs: APIFormat[] = ["openai", "openai-image"];
|
||||||
const apisValid = [req.outboundApi, req.inboundApi].every((api) =>
|
const apisValid = [req.outboundApi, req.inboundApi].every((api) =>
|
||||||
validAPIs.includes(api)
|
validAPIs.includes(api)
|
||||||
);
|
);
|
||||||
const serviceValid = req.service === "azure";
|
const serviceValid = req.service === "azure";
|
||||||
|
|
||||||
if (!apisValid || !serviceValid) {
|
if (!apisValid || !serviceValid) {
|
||||||
throw new Error("addAzureKey called on invalid request");
|
throw new Error("addAzureKey called on invalid request");
|
||||||
}
|
}
|
||||||
@@ -24,15 +22,11 @@ export const addAzureKey: ProxyReqMutator = async (manager) => {
|
|||||||
const model = req.body.model.startsWith("azure-")
|
const model = req.body.model.startsWith("azure-")
|
||||||
? req.body.model
|
? req.body.model
|
||||||
: `azure-${req.body.model}`;
|
: `azure-${req.body.model}`;
|
||||||
// TODO: untracked mutation to body, I think this should just be a
|
|
||||||
// RequestPreprocessor because we don't need to do it every dequeue.
|
req.key = keyPool.get(model, "azure");
|
||||||
req.body.model = model;
|
req.body.model = model;
|
||||||
|
|
||||||
const key = keyPool.get(model, "azure");
|
|
||||||
manager.setKey(key);
|
|
||||||
|
|
||||||
// Handles the sole Azure API deviation from the OpenAI spec (that I know of)
|
// Handles the sole Azure API deviation from the OpenAI spec (that I know of)
|
||||||
// TODO: this should also probably be a RequestPreprocessor
|
|
||||||
const notNullOrUndefined = (x: any) => x !== null && x !== undefined;
|
const notNullOrUndefined = (x: any) => x !== null && x !== undefined;
|
||||||
if ([req.body.logprobs, req.body.top_logprobs].some(notNullOrUndefined)) {
|
if ([req.body.logprobs, req.body.top_logprobs].some(notNullOrUndefined)) {
|
||||||
// OpenAI wants logprobs: true/false and top_logprobs: number
|
// OpenAI wants logprobs: true/false and top_logprobs: number
|
||||||
@@ -49,7 +43,7 @@ export const addAzureKey: ProxyReqMutator = async (manager) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
req.log.info(
|
req.log.info(
|
||||||
{ key: key.hash, model },
|
{ key: req.key.hash, model },
|
||||||
"Assigned Azure OpenAI key to request"
|
"Assigned Azure OpenAI key to request"
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -61,7 +55,7 @@ export const addAzureKey: ProxyReqMutator = async (manager) => {
|
|||||||
const apiVersion =
|
const apiVersion =
|
||||||
req.outboundApi === "openai" ? "2023-09-01-preview" : "2024-02-15-preview";
|
req.outboundApi === "openai" ? "2023-09-01-preview" : "2024-02-15-preview";
|
||||||
|
|
||||||
manager.setSignedRequest({
|
req.signedRequest = {
|
||||||
method: "POST",
|
method: "POST",
|
||||||
protocol: "https:",
|
protocol: "https:",
|
||||||
hostname: `${resourceName}.openai.azure.com`,
|
hostname: `${resourceName}.openai.azure.com`,
|
||||||
@@ -72,7 +66,7 @@ export const addAzureKey: ProxyReqMutator = async (manager) => {
|
|||||||
["api-key"]: apiKey,
|
["api-key"]: apiKey,
|
||||||
},
|
},
|
||||||
body: JSON.stringify(req.body),
|
body: JSON.stringify(req.body),
|
||||||
});
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
function getCredentialsFromKey(key: AzureOpenAIKey) {
|
function getCredentialsFromKey(key: AzureOpenAIKey) {
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
import { keyPool } from "../../../../shared/key-management";
|
||||||
|
import { RequestPreprocessor } from "../index";
|
||||||
|
|
||||||
|
export const addGoogleAIKey: RequestPreprocessor = (req) => {
|
||||||
|
const apisValid = req.inboundApi === "openai" && req.outboundApi === "google-ai";
|
||||||
|
const serviceValid = req.service === "google-ai";
|
||||||
|
if (!apisValid || !serviceValid) {
|
||||||
|
throw new Error("addGoogleAIKey called on invalid request");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!req.body?.model) {
|
||||||
|
throw new Error("You must specify a model with your request.");
|
||||||
|
}
|
||||||
|
|
||||||
|
const model = req.body.model;
|
||||||
|
req.key = keyPool.get(model, "google-ai");
|
||||||
|
|
||||||
|
req.log.info(
|
||||||
|
{ key: req.key.hash, model },
|
||||||
|
"Assigned Google AI API key to request"
|
||||||
|
);
|
||||||
|
|
||||||
|
// https://generativelanguage.googleapis.com/v1beta/models/$MODEL_ID:generateContent?key=$API_KEY
|
||||||
|
// https://generativelanguage.googleapis.com/v1beta/models/$MODEL_ID:streamGenerateContent?key=${API_KEY}
|
||||||
|
|
||||||
|
req.isStreaming = req.isStreaming || req.body.stream;
|
||||||
|
delete req.body.stream;
|
||||||
|
|
||||||
|
req.signedRequest = {
|
||||||
|
method: "POST",
|
||||||
|
protocol: "https:",
|
||||||
|
hostname: "generativelanguage.googleapis.com",
|
||||||
|
path: `/v1beta/models/${model}:${req.isStreaming ? "streamGenerateContent" : "generateContent"}?key=${req.key.key}`,
|
||||||
|
headers: {
|
||||||
|
["host"]: `generativelanguage.googleapis.com`,
|
||||||
|
["content-type"]: "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(req.body),
|
||||||
|
};
|
||||||
|
};
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
import { hasAvailableQuota } from "../../../../shared/users/user-store";
|
import { hasAvailableQuota } from "../../../../shared/users/user-store";
|
||||||
import { isImageGenerationRequest, isTextGenerationRequest } from "../../common";
|
import { isImageGenerationRequest, isTextGenerationRequest } from "../../common";
|
||||||
import { RequestPreprocessor } from "../index";
|
import { HPMRequestCallback } from "../index";
|
||||||
|
|
||||||
export class QuotaExceededError extends Error {
|
export class QuotaExceededError extends Error {
|
||||||
public quotaInfo: any;
|
public quotaInfo: any;
|
||||||
@@ -11,7 +11,7 @@ export class QuotaExceededError extends Error {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export const applyQuotaLimits: RequestPreprocessor = (req) => {
|
export const applyQuotaLimits: HPMRequestCallback = (_proxyReq, req) => {
|
||||||
const subjectToQuota =
|
const subjectToQuota =
|
||||||
isTextGenerationRequest(req) || isImageGenerationRequest(req);
|
isTextGenerationRequest(req) || isImageGenerationRequest(req);
|
||||||
if (!subjectToQuota || !req.user) return;
|
if (!subjectToQuota || !req.user) return;
|
||||||
|
|||||||
@@ -2,10 +2,11 @@ import { RequestPreprocessor } from "../index";
|
|||||||
import { countTokens } from "../../../../shared/tokenization";
|
import { countTokens } from "../../../../shared/tokenization";
|
||||||
import { assertNever } from "../../../../shared/utils";
|
import { assertNever } from "../../../../shared/utils";
|
||||||
import {
|
import {
|
||||||
|
AnthropicChatMessage,
|
||||||
GoogleAIChatMessage,
|
GoogleAIChatMessage,
|
||||||
MistralAIChatMessage,
|
MistralAIChatMessage,
|
||||||
OpenAIChatMessage,
|
OpenAIChatMessage,
|
||||||
} from "../../../../shared/api-schemas";
|
} from "../../../../shared/api-support";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Given a request with an already-transformed body, counts the number of
|
* Given a request with an already-transformed body, counts the number of
|
||||||
@@ -17,7 +18,7 @@ export const countPromptTokens: RequestPreprocessor = async (req) => {
|
|||||||
|
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "openai": {
|
case "openai": {
|
||||||
req.outputTokens = req.body.max_completion_tokens || req.body.max_tokens;
|
req.outputTokens = req.body.max_tokens;
|
||||||
const prompt: OpenAIChatMessage[] = req.body.messages;
|
const prompt: OpenAIChatMessage[] = req.body.messages;
|
||||||
result = await countTokens({ req, prompt, service });
|
result = await countTokens({ req, prompt, service });
|
||||||
break;
|
break;
|
||||||
@@ -30,13 +31,7 @@ export const countPromptTokens: RequestPreprocessor = async (req) => {
|
|||||||
}
|
}
|
||||||
case "anthropic-chat": {
|
case "anthropic-chat": {
|
||||||
req.outputTokens = req.body.max_tokens;
|
req.outputTokens = req.body.max_tokens;
|
||||||
let system = req.body.system ?? "";
|
const prompt: AnthropicChatMessage[] = req.body.messages;
|
||||||
if (Array.isArray(system)) {
|
|
||||||
system = system
|
|
||||||
.map((m: { type: string; text: string }) => m.text)
|
|
||||||
.join("\n");
|
|
||||||
}
|
|
||||||
const prompt = { system, messages: req.body.messages };
|
|
||||||
result = await countTokens({ req, prompt, service });
|
result = await countTokens({ req, prompt, service });
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -52,11 +47,9 @@ export const countPromptTokens: RequestPreprocessor = async (req) => {
|
|||||||
result = await countTokens({ req, prompt, service });
|
result = await countTokens({ req, prompt, service });
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "mistral-ai":
|
case "mistral-ai": {
|
||||||
case "mistral-text": {
|
|
||||||
req.outputTokens = req.body.max_tokens;
|
req.outputTokens = req.body.max_tokens;
|
||||||
const prompt: string | MistralAIChatMessage[] =
|
const prompt: MistralAIChatMessage[] = req.body.messages;
|
||||||
req.body.messages ?? req.body.prompt;
|
|
||||||
result = await countTokens({ req, prompt, service });
|
result = await countTokens({ req, prompt, service });
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import { Request } from "express";
|
import { Request } from "express";
|
||||||
import { z } from "zod";
|
|
||||||
import { config } from "../../../../config";
|
import { config } from "../../../../config";
|
||||||
import { assertNever } from "../../../../shared/utils";
|
import { assertNever } from "../../../../shared/utils";
|
||||||
import { RequestPreprocessor } from "../index";
|
import { RequestPreprocessor } from "../index";
|
||||||
@@ -8,8 +7,7 @@ import {
|
|||||||
MistralAIChatMessage,
|
MistralAIChatMessage,
|
||||||
OpenAIChatMessage,
|
OpenAIChatMessage,
|
||||||
flattenAnthropicMessages,
|
flattenAnthropicMessages,
|
||||||
} from "../../../../shared/api-schemas";
|
} from "../../../../shared/api-support";
|
||||||
import { GoogleAIV1GenerateContentSchema } from "../../../../shared/api-schemas/google-ai";
|
|
||||||
|
|
||||||
const rejectedClients = new Map<string, number>();
|
const rejectedClients = new Map<string, number>();
|
||||||
|
|
||||||
@@ -52,16 +50,14 @@ export const languageFilter: RequestPreprocessor = async (req) => {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
TODO: this is not type safe and does not raise errors if request body zod schema
|
|
||||||
is changed.
|
|
||||||
*/
|
|
||||||
function getPromptFromRequest(req: Request) {
|
function getPromptFromRequest(req: Request) {
|
||||||
const service = req.outboundApi;
|
const service = req.outboundApi;
|
||||||
const body = req.body;
|
const body = req.body;
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
return flattenAnthropicMessages(body.messages);
|
return flattenAnthropicMessages(body.messages);
|
||||||
|
case "anthropic-text":
|
||||||
|
return body.prompt;
|
||||||
case "openai":
|
case "openai":
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
return body.messages
|
return body.messages
|
||||||
@@ -76,18 +72,11 @@ function getPromptFromRequest(req: Request) {
|
|||||||
return `${msg.role}: ${text}`;
|
return `${msg.role}: ${text}`;
|
||||||
})
|
})
|
||||||
.join("\n\n");
|
.join("\n\n");
|
||||||
case "anthropic-text":
|
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
case "mistral-text":
|
|
||||||
return body.prompt;
|
return body.prompt;
|
||||||
case "google-ai": {
|
case "google-ai":
|
||||||
const b = body as z.infer<typeof GoogleAIV1GenerateContentSchema>;
|
return body.prompt.text;
|
||||||
return [
|
|
||||||
b.systemInstruction?.parts.map((p) => p.text),
|
|
||||||
...b.contents.flatMap((c) => c.parts.map((p) => p.text)),
|
|
||||||
].join("\n");
|
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
assertNever(service);
|
assertNever(service);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,22 +4,8 @@ import { LLMService } from "../../../../shared/models";
|
|||||||
import { RequestPreprocessor } from "../index";
|
import { RequestPreprocessor } from "../index";
|
||||||
|
|
||||||
export const setApiFormat = (api: {
|
export const setApiFormat = (api: {
|
||||||
/**
|
|
||||||
* The API format the user made the request in and expects the response to be
|
|
||||||
* in.
|
|
||||||
*/
|
|
||||||
inApi: Request["inboundApi"];
|
inApi: Request["inboundApi"];
|
||||||
/**
|
|
||||||
* The API format the proxy will make the request in and expects the response
|
|
||||||
* to be in. If different from `inApi`, the proxy will transform the user's
|
|
||||||
* request body to this format, and will transform the response body or stream
|
|
||||||
* events from this format.
|
|
||||||
*/
|
|
||||||
outApi: APIFormat;
|
outApi: APIFormat;
|
||||||
/**
|
|
||||||
* The service the request will be sent to, which determines authentication
|
|
||||||
* and possibly the streaming transport.
|
|
||||||
*/
|
|
||||||
service: LLMService;
|
service: LLMService;
|
||||||
}): RequestPreprocessor => {
|
}): RequestPreprocessor => {
|
||||||
return function configureRequestApiFormat(req) {
|
return function configureRequestApiFormat(req) {
|
||||||
|
|||||||
@@ -0,0 +1,129 @@
|
|||||||
|
import express from "express";
|
||||||
|
import { Sha256 } from "@aws-crypto/sha256-js";
|
||||||
|
import { SignatureV4 } from "@smithy/signature-v4";
|
||||||
|
import { HttpRequest } from "@smithy/protocol-http";
|
||||||
|
import {
|
||||||
|
AnthropicV1TextSchema,
|
||||||
|
AnthropicV1MessagesSchema,
|
||||||
|
} from "../../../../shared/api-support";
|
||||||
|
import { keyPool } from "../../../../shared/key-management";
|
||||||
|
import { RequestPreprocessor } from "../index";
|
||||||
|
|
||||||
|
const AMZ_HOST =
|
||||||
|
process.env.AMZ_HOST || "bedrock-runtime.%REGION%.amazonaws.com";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Signs an outgoing AWS request with the appropriate headers modifies the
|
||||||
|
* request object in place to fix the path.
|
||||||
|
* This happens AFTER request transformation.
|
||||||
|
*/
|
||||||
|
export const signAwsRequest: RequestPreprocessor = async (req) => {
|
||||||
|
const { model, stream } = req.body;
|
||||||
|
req.key = keyPool.get(model, "aws");
|
||||||
|
|
||||||
|
req.isStreaming = stream === true || stream === "true";
|
||||||
|
|
||||||
|
// same as addAnthropicPreamble for non-AWS requests, but has to happen here
|
||||||
|
if (req.outboundApi === "anthropic-text") {
|
||||||
|
let preamble = req.body.prompt.startsWith("\n\nHuman:") ? "" : "\n\nHuman:";
|
||||||
|
req.body.prompt = preamble + req.body.prompt;
|
||||||
|
}
|
||||||
|
|
||||||
|
// AWS uses mostly the same parameters as Anthropic, with a few removed params
|
||||||
|
// and much stricter validation on unused parameters. Rather than treating it
|
||||||
|
// as a separate schema we will use the anthropic ones and strip the unused
|
||||||
|
// parameters.
|
||||||
|
// TODO: This should happen in transform-outbound-payload.ts
|
||||||
|
let strippedParams: Record<string, unknown>;
|
||||||
|
if (req.outboundApi === "anthropic-chat") {
|
||||||
|
strippedParams = AnthropicV1MessagesSchema.pick({
|
||||||
|
messages: true,
|
||||||
|
max_tokens: true,
|
||||||
|
stop_sequences: true,
|
||||||
|
temperature: true,
|
||||||
|
top_k: true,
|
||||||
|
top_p: true,
|
||||||
|
})
|
||||||
|
.strip()
|
||||||
|
.parse(req.body);
|
||||||
|
strippedParams.anthropic_version = "bedrock-2023-05-31";
|
||||||
|
} else {
|
||||||
|
strippedParams = AnthropicV1TextSchema.pick({
|
||||||
|
prompt: true,
|
||||||
|
max_tokens_to_sample: true,
|
||||||
|
stop_sequences: true,
|
||||||
|
temperature: true,
|
||||||
|
top_k: true,
|
||||||
|
top_p: true,
|
||||||
|
})
|
||||||
|
.strip()
|
||||||
|
.parse(req.body);
|
||||||
|
}
|
||||||
|
|
||||||
|
const credential = getCredentialParts(req);
|
||||||
|
const host = AMZ_HOST.replace("%REGION%", credential.region);
|
||||||
|
// AWS only uses 2023-06-01 and does not actually check this header, but we
|
||||||
|
// set it so that the stream adapter always selects the correct transformer.
|
||||||
|
req.headers["anthropic-version"] = "2023-06-01";
|
||||||
|
|
||||||
|
// Uses the AWS SDK to sign a request, then modifies our HPM proxy request
|
||||||
|
// with the headers generated by the SDK.
|
||||||
|
const newRequest = new HttpRequest({
|
||||||
|
method: "POST",
|
||||||
|
protocol: "https:",
|
||||||
|
hostname: host,
|
||||||
|
path: `/model/${model}/invoke${stream ? "-with-response-stream" : ""}`,
|
||||||
|
headers: {
|
||||||
|
["Host"]: host,
|
||||||
|
["content-type"]: "application/json",
|
||||||
|
},
|
||||||
|
body: JSON.stringify(strippedParams),
|
||||||
|
});
|
||||||
|
|
||||||
|
if (stream) {
|
||||||
|
newRequest.headers["x-amzn-bedrock-accept"] = "application/json";
|
||||||
|
} else {
|
||||||
|
newRequest.headers["accept"] = "*/*";
|
||||||
|
}
|
||||||
|
|
||||||
|
const { key, body, inboundApi, outboundApi } = req;
|
||||||
|
req.log.info(
|
||||||
|
{ key: key.hash, model: body.model, inboundApi, outboundApi },
|
||||||
|
"Assigned AWS credentials to request"
|
||||||
|
);
|
||||||
|
|
||||||
|
req.signedRequest = await sign(newRequest, getCredentialParts(req));
|
||||||
|
};
|
||||||
|
|
||||||
|
type Credential = {
|
||||||
|
accessKeyId: string;
|
||||||
|
secretAccessKey: string;
|
||||||
|
region: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
function getCredentialParts(req: express.Request): Credential {
|
||||||
|
const [accessKeyId, secretAccessKey, region] = req.key!.key.split(":");
|
||||||
|
|
||||||
|
if (!accessKeyId || !secretAccessKey || !region) {
|
||||||
|
req.log.error(
|
||||||
|
{ key: req.key!.hash },
|
||||||
|
"AWS_CREDENTIALS isn't correctly formatted; refer to the docs"
|
||||||
|
);
|
||||||
|
throw new Error("The key assigned to this request is invalid.");
|
||||||
|
}
|
||||||
|
|
||||||
|
return { accessKeyId, secretAccessKey, region };
|
||||||
|
}
|
||||||
|
|
||||||
|
async function sign(request: HttpRequest, credential: Credential) {
|
||||||
|
const { accessKeyId, secretAccessKey, region } = credential;
|
||||||
|
|
||||||
|
const signer = new SignatureV4({
|
||||||
|
sha256: Sha256,
|
||||||
|
credentials: { accessKeyId, secretAccessKey },
|
||||||
|
region,
|
||||||
|
service: "bedrock",
|
||||||
|
});
|
||||||
|
|
||||||
|
return signer.sign(request);
|
||||||
|
}
|
||||||
@@ -1,51 +1,52 @@
|
|||||||
import { Request } from "express";
|
|
||||||
import {
|
import {
|
||||||
API_REQUEST_VALIDATORS,
|
API_REQUEST_VALIDATORS,
|
||||||
API_REQUEST_TRANSFORMERS,
|
API_REQUEST_TRANSFORMERS,
|
||||||
} from "../../../../shared/api-schemas";
|
} from "../../../../shared/api-support";
|
||||||
import { BadRequestError } from "../../../../shared/errors";
|
import { BadRequestError } from "../../../../shared/errors";
|
||||||
import { fixMistralPrompt } from "../../../../shared/api-schemas/mistral-ai";
|
|
||||||
import {
|
import {
|
||||||
isImageGenerationRequest,
|
isImageGenerationRequest,
|
||||||
isTextGenerationRequest,
|
isTextGenerationRequest,
|
||||||
} from "../../common";
|
} from "../../common";
|
||||||
import { RequestPreprocessor } from "../index";
|
import { RequestPreprocessor } from "../index";
|
||||||
|
import { fixMistralPrompt } from "../../../../shared/api-support/kits/mistral-ai/request-transformers";
|
||||||
|
|
||||||
/** Transforms an incoming request body to one that matches the target API. */
|
/** Transforms an incoming request body to one that matches the target API. */
|
||||||
export const transformOutboundPayload: RequestPreprocessor = async (req) => {
|
export const transformOutboundPayload: RequestPreprocessor = async (req) => {
|
||||||
|
const sameService = req.inboundApi === req.outboundApi;
|
||||||
const alreadyTransformed = req.retryCount > 0;
|
const alreadyTransformed = req.retryCount > 0;
|
||||||
const notTransformable =
|
const notTransformable =
|
||||||
!isTextGenerationRequest(req) && !isImageGenerationRequest(req);
|
!isTextGenerationRequest(req) && !isImageGenerationRequest(req);
|
||||||
|
|
||||||
if (alreadyTransformed) {
|
if (alreadyTransformed || notTransformable) return;
|
||||||
return;
|
|
||||||
} else if (notTransformable) {
|
// TODO: this should be an APIFormatTransformer
|
||||||
// This is probably an indication of a bug in the proxy.
|
if (req.inboundApi === "mistral-ai") {
|
||||||
const { inboundApi, outboundApi, method, path } = req;
|
const messages = req.body.messages;
|
||||||
req.log.warn(
|
req.body.messages = fixMistralPrompt(messages);
|
||||||
{ inboundApi, outboundApi, method, path },
|
req.log.info(
|
||||||
"`transformOutboundPayload` called on a non-transformable request."
|
{ old: messages.length, new: req.body.messages.length },
|
||||||
|
"Fixed Mistral prompt"
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (sameService) {
|
||||||
|
const result = API_REQUEST_VALIDATORS[req.inboundApi].safeParse(req.body);
|
||||||
|
if (!result.success) {
|
||||||
|
req.log.warn(
|
||||||
|
{ issues: result.error.issues, body: req.body },
|
||||||
|
"Request validation failed"
|
||||||
|
);
|
||||||
|
throw result.error;
|
||||||
|
}
|
||||||
|
req.body = result.data;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
applyMistralPromptFixes(req);
|
|
||||||
|
|
||||||
// Native prompts are those which were already provided by the client in the
|
|
||||||
// target API format. We don't need to transform them.
|
|
||||||
const isNativePrompt = req.inboundApi === req.outboundApi;
|
|
||||||
if (isNativePrompt) {
|
|
||||||
const result = API_REQUEST_VALIDATORS[req.inboundApi].parse(req.body);
|
|
||||||
req.body = result;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Prompt requires translation from one API format to another.
|
|
||||||
const transformation = `${req.inboundApi}->${req.outboundApi}` as const;
|
const transformation = `${req.inboundApi}->${req.outboundApi}` as const;
|
||||||
const transFn = API_REQUEST_TRANSFORMERS[transformation];
|
const transFn = API_REQUEST_TRANSFORMERS[transformation];
|
||||||
|
|
||||||
if (transFn) {
|
if (transFn) {
|
||||||
req.log.info({ transformation }, "Transforming request...");
|
req.log.info({ transformation }, "Transforming request");
|
||||||
req.body = await transFn(req);
|
req.body = await transFn(req);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -54,36 +55,3 @@ export const transformOutboundPayload: RequestPreprocessor = async (req) => {
|
|||||||
`${transformation} proxying is not supported. Make sure your client is configured to send requests in the correct format and to the correct endpoint.`
|
`${transformation} proxying is not supported. Make sure your client is configured to send requests in the correct format and to the correct endpoint.`
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
// handles weird cases that don't fit into our abstractions
|
|
||||||
function applyMistralPromptFixes(req: Request): void {
|
|
||||||
if (req.inboundApi === "mistral-ai") {
|
|
||||||
// Mistral Chat is very similar to OpenAI but not identical and many clients
|
|
||||||
// don't properly handle the differences. We will try to validate the
|
|
||||||
// mistral prompt and try to fix it if it fails. It will be re-validated
|
|
||||||
// after this function returns.
|
|
||||||
const result = API_REQUEST_VALIDATORS["mistral-ai"].parse(req.body);
|
|
||||||
req.body.messages = fixMistralPrompt(result.messages);
|
|
||||||
req.log.info(
|
|
||||||
{ n: req.body.messages.length, prev: result.messages.length },
|
|
||||||
"Applied Mistral chat prompt fixes."
|
|
||||||
);
|
|
||||||
|
|
||||||
// If the prompt relies on `prefix: true` for the last message, we need to
|
|
||||||
// convert it to a text completions request because AWS Mistral support for
|
|
||||||
// this feature is broken.
|
|
||||||
// On Mistral La Plateforme, we can't do this because they don't expose
|
|
||||||
// a text completions endpoint.
|
|
||||||
const { messages } = req.body;
|
|
||||||
const lastMessage = messages && messages[messages.length - 1];
|
|
||||||
if (lastMessage?.role === "assistant" && req.service === "aws") {
|
|
||||||
// enable prefix if client forgot, otherwise the template will insert an
|
|
||||||
// eos token which is very unlikely to be what the client wants.
|
|
||||||
lastMessage.prefix = true;
|
|
||||||
req.outboundApi = "mistral-text";
|
|
||||||
req.log.info(
|
|
||||||
"Native Mistral chat prompt relies on assistant message prefix. Converting to text completions request."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -6,9 +6,8 @@ import { RequestPreprocessor } from "../index";
|
|||||||
|
|
||||||
const CLAUDE_MAX_CONTEXT = config.maxContextTokensAnthropic;
|
const CLAUDE_MAX_CONTEXT = config.maxContextTokensAnthropic;
|
||||||
const OPENAI_MAX_CONTEXT = config.maxContextTokensOpenAI;
|
const OPENAI_MAX_CONTEXT = config.maxContextTokensOpenAI;
|
||||||
// todo: make configurable
|
const GOOGLE_AI_MAX_CONTEXT = 32000;
|
||||||
const GOOGLE_AI_MAX_CONTEXT = 2048000;
|
const MISTRAL_AI_MAX_CONTENT = 32768;
|
||||||
const MISTRAL_AI_MAX_CONTENT = 131072;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Assigns `req.promptTokens` and `req.outputTokens` based on the request body
|
* Assigns `req.promptTokens` and `req.outputTokens` based on the request body
|
||||||
@@ -38,7 +37,6 @@ export const validateContextSize: RequestPreprocessor = async (req) => {
|
|||||||
proxyMax = GOOGLE_AI_MAX_CONTEXT;
|
proxyMax = GOOGLE_AI_MAX_CONTEXT;
|
||||||
break;
|
break;
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
case "mistral-text":
|
|
||||||
proxyMax = MISTRAL_AI_MAX_CONTENT;
|
proxyMax = MISTRAL_AI_MAX_CONTENT;
|
||||||
break;
|
break;
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
@@ -48,32 +46,17 @@ export const validateContextSize: RequestPreprocessor = async (req) => {
|
|||||||
}
|
}
|
||||||
proxyMax ||= Number.MAX_SAFE_INTEGER;
|
proxyMax ||= Number.MAX_SAFE_INTEGER;
|
||||||
|
|
||||||
if (req.user?.type === "special") {
|
|
||||||
req.log.debug("Special user, not enforcing proxy context limit.");
|
|
||||||
proxyMax = Number.MAX_SAFE_INTEGER;
|
|
||||||
}
|
|
||||||
|
|
||||||
let modelMax: number;
|
let modelMax: number;
|
||||||
if (model.match(/gpt-3.5-turbo-16k/)) {
|
if (model.match(/gpt-3.5-turbo-16k/)) {
|
||||||
modelMax = 16384;
|
modelMax = 16384;
|
||||||
} else if (model.match(/^gpt-4o/)) {
|
|
||||||
modelMax = 128000;
|
|
||||||
} else if (model.match(/^chatgpt-4o/)) {
|
|
||||||
modelMax = 128000;
|
|
||||||
} else if (model.match(/gpt-4-turbo(-\d{4}-\d{2}-\d{2})?$/)) {
|
|
||||||
modelMax = 131072;
|
|
||||||
} else if (model.match(/gpt-4-turbo(-preview)?$/)) {
|
} else if (model.match(/gpt-4-turbo(-preview)?$/)) {
|
||||||
modelMax = 131072;
|
modelMax = 131072;
|
||||||
} else if (model.match(/gpt-4-(0125|1106)(-preview)?$/)) {
|
} else if (model.match(/gpt-4-(0125|1106)(-preview)?$/)) {
|
||||||
modelMax = 131072;
|
modelMax = 131072;
|
||||||
} else if (model.match(/^gpt-4(-\d{4})?-vision(-preview)?$/)) {
|
} else if (model.match(/^gpt-4(-\d{4})?-vision(-preview)?$/)) {
|
||||||
modelMax = 131072;
|
modelMax = 131072;
|
||||||
} else if (model.match(/^o1-mini(-\d{4}-\d{2}-\d{2})?$/)) {
|
|
||||||
modelMax = 128000;
|
|
||||||
} else if (model.match(/^o1(-preview)?(-\d{4}-\d{2}-\d{2})?$/)) {
|
|
||||||
modelMax = 128000;
|
|
||||||
} else if (model.match(/gpt-3.5-turbo/)) {
|
} else if (model.match(/gpt-3.5-turbo/)) {
|
||||||
modelMax = 16384;
|
modelMax = 4096;
|
||||||
} else if (model.match(/gpt-4-32k/)) {
|
} else if (model.match(/gpt-4-32k/)) {
|
||||||
modelMax = 32768;
|
modelMax = 32768;
|
||||||
} else if (model.match(/gpt-4/)) {
|
} else if (model.match(/gpt-4/)) {
|
||||||
@@ -88,19 +71,17 @@ export const validateContextSize: RequestPreprocessor = async (req) => {
|
|||||||
modelMax = 200000;
|
modelMax = 200000;
|
||||||
} else if (model.match(/^claude-3/)) {
|
} else if (model.match(/^claude-3/)) {
|
||||||
modelMax = 200000;
|
modelMax = 200000;
|
||||||
} else if (model.match(/^gemini-/)) {
|
} else if (model.match(/^gemini-\d{3}$/)) {
|
||||||
modelMax = 1024000;
|
modelMax = GOOGLE_AI_MAX_CONTEXT;
|
||||||
} else if (model.match(/^anthropic\.claude-3/)) {
|
} else if (model.match(/^mistral-(tiny|small|medium)$/)) {
|
||||||
|
modelMax = MISTRAL_AI_MAX_CONTENT;
|
||||||
|
} else if (model.match(/^anthropic\.claude-3-sonnet/)) {
|
||||||
modelMax = 200000;
|
modelMax = 200000;
|
||||||
} else if (model.match(/^anthropic\.claude-v2:\d/)) {
|
} else if (model.match(/^anthropic\.claude-v2:\d/)) {
|
||||||
modelMax = 200000;
|
modelMax = 200000;
|
||||||
} else if (model.match(/^anthropic\.claude/)) {
|
} else if (model.match(/^anthropic\.claude/)) {
|
||||||
|
// Not sure if AWS Claude has the same context limit as Anthropic Claude.
|
||||||
modelMax = 100000;
|
modelMax = 100000;
|
||||||
} else if (model.match(/tral/)) {
|
|
||||||
// catches mistral, mixtral, codestral, mathstral, etc. mistral models have
|
|
||||||
// no name convention and wildly different context windows so this is a
|
|
||||||
// catch-all
|
|
||||||
modelMax = MISTRAL_AI_MAX_CONTENT;
|
|
||||||
} else {
|
} else {
|
||||||
req.log.warn({ model }, "Unknown model, using 200k token limit.");
|
req.log.warn({ model }, "Unknown model, using 200k token limit.");
|
||||||
modelMax = 200000;
|
modelMax = 200000;
|
||||||
|
|||||||
@@ -1,44 +0,0 @@
|
|||||||
import { config } from "../../../../config";
|
|
||||||
import { assertNever } from "../../../../shared/utils";
|
|
||||||
import { RequestPreprocessor } from "../index";
|
|
||||||
import { containsImageContent as containsImageContentOpenAI } from "../../../../shared/api-schemas/openai";
|
|
||||||
import { containsImageContent as containsImageContentAnthropic } from "../../../../shared/api-schemas/anthropic";
|
|
||||||
import { ForbiddenError } from "../../../../shared/errors";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Rejects prompts containing images if multimodal prompts are disabled.
|
|
||||||
*/
|
|
||||||
export const validateVision: RequestPreprocessor = async (req) => {
|
|
||||||
if (req.service === undefined) {
|
|
||||||
throw new Error("Request service must be set before validateVision");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (req.user?.type === "special") return;
|
|
||||||
if (config.allowedVisionServices.includes(req.service)) return;
|
|
||||||
|
|
||||||
// vision not allowed for req's service, block prompts with images
|
|
||||||
let hasImage = false;
|
|
||||||
switch (req.outboundApi) {
|
|
||||||
case "openai":
|
|
||||||
hasImage = containsImageContentOpenAI(req.body.messages);
|
|
||||||
break;
|
|
||||||
case "anthropic-chat":
|
|
||||||
hasImage = containsImageContentAnthropic(req.body.messages);
|
|
||||||
break;
|
|
||||||
case "anthropic-text":
|
|
||||||
case "google-ai":
|
|
||||||
case "mistral-ai":
|
|
||||||
case "mistral-text":
|
|
||||||
case "openai-image":
|
|
||||||
case "openai-text":
|
|
||||||
return;
|
|
||||||
default:
|
|
||||||
assertNever(req.outboundApi);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (hasImage) {
|
|
||||||
throw new ForbiddenError(
|
|
||||||
"Prompts containing images are not permitted. Disable 'Send Inline Images' in your client and try again."
|
|
||||||
);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
@@ -1,135 +0,0 @@
|
|||||||
import { Request, Response } from "express";
|
|
||||||
import http from "http";
|
|
||||||
import ProxyServer from "http-proxy";
|
|
||||||
import { Readable } from "stream";
|
|
||||||
import {
|
|
||||||
createProxyMiddleware,
|
|
||||||
Options,
|
|
||||||
debugProxyErrorsPlugin,
|
|
||||||
proxyEventsPlugin,
|
|
||||||
} from "http-proxy-middleware";
|
|
||||||
import { ProxyReqMutator, stripHeaders } from "./index";
|
|
||||||
import { createOnProxyResHandler, ProxyResHandlerWithBody } from "../response";
|
|
||||||
import { createQueueMiddleware } from "../../queue";
|
|
||||||
import { getHttpAgents } from "../../../shared/network";
|
|
||||||
import { classifyErrorAndSend } from "../common";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Options for the `createQueuedProxyMiddleware` factory function.
|
|
||||||
*/
|
|
||||||
type ProxyMiddlewareFactoryOptions = {
|
|
||||||
/**
|
|
||||||
* Functions which receive a ProxyReqManager and can modify the request before
|
|
||||||
* it is proxied. The modifications will be automatically reverted if the
|
|
||||||
* request needs to be returned to the queue.
|
|
||||||
*/
|
|
||||||
mutations?: ProxyReqMutator[];
|
|
||||||
/**
|
|
||||||
* The target URL to proxy requests to. This can be a string or a function
|
|
||||||
* which accepts the request and returns a string.
|
|
||||||
*/
|
|
||||||
target: string | Options<Request>["router"];
|
|
||||||
/**
|
|
||||||
* A function which receives the proxy response and the JSON-decoded request
|
|
||||||
* body. Only fired for non-streaming responses; streaming responses are
|
|
||||||
* handled in `handle-streaming-response.ts`.
|
|
||||||
*/
|
|
||||||
blockingResponseHandler?: ProxyResHandlerWithBody;
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a middleware function that accepts incoming requests and places them
|
|
||||||
* into the request queue. When the request is dequeued, it is proxied to the
|
|
||||||
* target URL using the given options and middleware. Non-streaming responses
|
|
||||||
* are handled by the given `blockingResponseHandler`.
|
|
||||||
*/
|
|
||||||
export function createQueuedProxyMiddleware({
|
|
||||||
target,
|
|
||||||
mutations,
|
|
||||||
blockingResponseHandler,
|
|
||||||
}: ProxyMiddlewareFactoryOptions) {
|
|
||||||
const hpmTarget = typeof target === "string" ? target : "https://setbyrouter";
|
|
||||||
const hpmRouter = typeof target === "function" ? target : undefined;
|
|
||||||
|
|
||||||
const [httpAgent, httpsAgent] = getHttpAgents();
|
|
||||||
const agent = hpmTarget.startsWith("http:") ? httpAgent : httpsAgent;
|
|
||||||
|
|
||||||
const proxyMiddleware = createProxyMiddleware<Request, Response>({
|
|
||||||
target: hpmTarget,
|
|
||||||
router: hpmRouter,
|
|
||||||
agent,
|
|
||||||
changeOrigin: true,
|
|
||||||
toProxy: true,
|
|
||||||
selfHandleResponse: typeof blockingResponseHandler === "function",
|
|
||||||
// Disable HPM logger plugin (requires re-adding the other default plugins).
|
|
||||||
// Contrary to name, debugProxyErrorsPlugin is not just for debugging and
|
|
||||||
// fixes several error handling/connection close issues in http-proxy core.
|
|
||||||
ejectPlugins: true,
|
|
||||||
// Inferred (via Options<express.Request>) as Plugin<express.Request>, but
|
|
||||||
// the default plugins only allow http.IncomingMessage for TReq. They are
|
|
||||||
// compatible with express.Request, so we can use them. `Plugin` type is not
|
|
||||||
// exported for some reason.
|
|
||||||
plugins: [
|
|
||||||
debugProxyErrorsPlugin,
|
|
||||||
pinoLoggerPlugin,
|
|
||||||
proxyEventsPlugin,
|
|
||||||
] as any,
|
|
||||||
on: {
|
|
||||||
proxyRes: createOnProxyResHandler(
|
|
||||||
blockingResponseHandler ? [blockingResponseHandler] : []
|
|
||||||
),
|
|
||||||
error: classifyErrorAndSend,
|
|
||||||
},
|
|
||||||
buffer: ((req: Request) => {
|
|
||||||
// This is a hack/monkey patch and is not part of the official
|
|
||||||
// http-proxy-middleware package. See patches/http-proxy+1.18.1.patch.
|
|
||||||
let payload = req.body;
|
|
||||||
if (typeof payload === "string") {
|
|
||||||
payload = Buffer.from(payload);
|
|
||||||
}
|
|
||||||
const stream = new Readable();
|
|
||||||
stream.push(payload);
|
|
||||||
stream.push(null);
|
|
||||||
return stream;
|
|
||||||
}) as any,
|
|
||||||
});
|
|
||||||
|
|
||||||
return createQueueMiddleware({
|
|
||||||
mutations: [stripHeaders, ...(mutations ?? [])],
|
|
||||||
proxyMiddleware,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
type ProxiedResponse = http.IncomingMessage & Response & any;
|
|
||||||
function pinoLoggerPlugin(proxyServer: ProxyServer<Request>) {
|
|
||||||
proxyServer.on("error", (err, req, res, target) => {
|
|
||||||
req.log.error(
|
|
||||||
{ originalUrl: req.originalUrl, targetUrl: String(target), err },
|
|
||||||
"Error occurred while proxying request to target"
|
|
||||||
);
|
|
||||||
});
|
|
||||||
proxyServer.on("proxyReq", (proxyReq, req) => {
|
|
||||||
const { protocol, host, path } = proxyReq;
|
|
||||||
req.log.info(
|
|
||||||
{
|
|
||||||
from: req.originalUrl,
|
|
||||||
to: `${protocol}//${host}${path}`,
|
|
||||||
},
|
|
||||||
"Sending request to upstream API..."
|
|
||||||
);
|
|
||||||
});
|
|
||||||
proxyServer.on("proxyRes", (proxyRes: ProxiedResponse, req, _res) => {
|
|
||||||
const { protocol, host, path } = proxyRes.req;
|
|
||||||
req.log.info(
|
|
||||||
{
|
|
||||||
target: `${protocol}//${host}${path}`,
|
|
||||||
status: proxyRes.statusCode,
|
|
||||||
contentType: proxyRes.headers["content-type"],
|
|
||||||
contentEncoding: proxyRes.headers["content-encoding"],
|
|
||||||
contentLength: proxyRes.headers["content-length"],
|
|
||||||
transferEncoding: proxyRes.headers["transfer-encoding"],
|
|
||||||
},
|
|
||||||
"Got response from upstream API."
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
@@ -1,112 +0,0 @@
|
|||||||
import { Request } from "express";
|
|
||||||
import { Key } from "../../../shared/key-management";
|
|
||||||
import { assertNever } from "../../../shared/utils";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents a change to the request that will be reverted if the request
|
|
||||||
* fails.
|
|
||||||
*/
|
|
||||||
interface ProxyReqMutation {
|
|
||||||
target: "header" | "path" | "body" | "api-key" | "signed-request";
|
|
||||||
key?: string;
|
|
||||||
originalValue: any | undefined;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Manages a request's headers, body, and path, allowing them to be modified
|
|
||||||
* before the request is proxied and automatically reverted if the request
|
|
||||||
* needs to be retried.
|
|
||||||
*/
|
|
||||||
export class ProxyReqManager {
|
|
||||||
private req: Request;
|
|
||||||
private mutations: ProxyReqMutation[] = [];
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A read-only proxy of the request object. Avoid changing any properties
|
|
||||||
* here as they will persist across retries.
|
|
||||||
*/
|
|
||||||
public readonly request: Readonly<Request>;
|
|
||||||
|
|
||||||
constructor(req: Request) {
|
|
||||||
this.req = req;
|
|
||||||
|
|
||||||
this.request = new Proxy(req, {
|
|
||||||
get: (target, prop) => {
|
|
||||||
if (typeof prop === "string") return target[prop as keyof Request];
|
|
||||||
return undefined;
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
setHeader(name: string, newValue: string): void {
|
|
||||||
const originalValue = this.req.get(name);
|
|
||||||
this.mutations.push({ target: "header", key: name, originalValue });
|
|
||||||
this.req.headers[name.toLowerCase()] = newValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
removeHeader(name: string): void {
|
|
||||||
const originalValue = this.req.get(name);
|
|
||||||
this.mutations.push({ target: "header", key: name, originalValue });
|
|
||||||
delete this.req.headers[name.toLowerCase()];
|
|
||||||
}
|
|
||||||
|
|
||||||
setBody(newBody: any): void {
|
|
||||||
const originalValue = this.req.body;
|
|
||||||
this.mutations.push({ target: "body", key: "body", originalValue });
|
|
||||||
this.req.body = newBody;
|
|
||||||
}
|
|
||||||
|
|
||||||
setKey(newKey: Key): void {
|
|
||||||
const originalValue = this.req.key;
|
|
||||||
this.mutations.push({ target: "api-key", key: "key", originalValue });
|
|
||||||
this.req.key = newKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
setPath(newPath: string): void {
|
|
||||||
const originalValue = this.req.path;
|
|
||||||
this.mutations.push({ target: "path", key: "path", originalValue });
|
|
||||||
this.req.url = newPath;
|
|
||||||
}
|
|
||||||
|
|
||||||
setSignedRequest(newSignedRequest: typeof this.req.signedRequest): void {
|
|
||||||
const originalValue = this.req.signedRequest;
|
|
||||||
this.mutations.push({ target: "signed-request", key: "signedRequest", originalValue });
|
|
||||||
this.req.signedRequest = newSignedRequest;
|
|
||||||
}
|
|
||||||
|
|
||||||
hasChanged(): boolean {
|
|
||||||
return this.mutations.length > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
revert(): void {
|
|
||||||
for (const mutation of this.mutations.reverse()) {
|
|
||||||
switch (mutation.target) {
|
|
||||||
case "header":
|
|
||||||
if (mutation.originalValue === undefined) {
|
|
||||||
delete this.req.headers[mutation.key!.toLowerCase()];
|
|
||||||
continue;
|
|
||||||
} else {
|
|
||||||
this.req.headers[mutation.key!.toLowerCase()] =
|
|
||||||
mutation.originalValue;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "path":
|
|
||||||
this.req.url = mutation.originalValue;
|
|
||||||
break;
|
|
||||||
case "body":
|
|
||||||
this.req.body = mutation.originalValue;
|
|
||||||
break;
|
|
||||||
case "api-key":
|
|
||||||
// We don't reset the key here because it's not a property of the
|
|
||||||
// inbound request, so we'd only ever be reverting it to null.
|
|
||||||
break;
|
|
||||||
case "signed-request":
|
|
||||||
this.req.signedRequest = mutation.originalValue;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
assertNever(mutation.target);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
this.mutations = [];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
import util from "util";
|
|
||||||
import zlib from "zlib";
|
|
||||||
import { PassThrough } from "stream";
|
|
||||||
|
|
||||||
const BUFFER_DECODER_MAP = {
|
|
||||||
gzip: util.promisify(zlib.gunzip),
|
|
||||||
deflate: util.promisify(zlib.inflate),
|
|
||||||
br: util.promisify(zlib.brotliDecompress),
|
|
||||||
text: (data: Buffer) => data,
|
|
||||||
};
|
|
||||||
|
|
||||||
const STREAM_DECODER_MAP = {
|
|
||||||
gzip: zlib.createGunzip,
|
|
||||||
deflate: zlib.createInflate,
|
|
||||||
br: zlib.createBrotliDecompress,
|
|
||||||
text: () => new PassThrough(),
|
|
||||||
};
|
|
||||||
|
|
||||||
type SupportedContentEncoding = keyof typeof BUFFER_DECODER_MAP;
|
|
||||||
const isSupportedContentEncoding = (
|
|
||||||
encoding: string
|
|
||||||
): encoding is SupportedContentEncoding => encoding in BUFFER_DECODER_MAP;
|
|
||||||
|
|
||||||
export async function decompressBuffer(buf: Buffer, encoding: string = "text") {
|
|
||||||
if (isSupportedContentEncoding(encoding)) {
|
|
||||||
return (await BUFFER_DECODER_MAP[encoding](buf)).toString();
|
|
||||||
}
|
|
||||||
throw new Error(`Unsupported content-encoding: ${encoding}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getStreamDecompressor(encoding: string = "text") {
|
|
||||||
if (isSupportedContentEncoding(encoding)) {
|
|
||||||
return STREAM_DECODER_MAP[encoding]();
|
|
||||||
}
|
|
||||||
throw new Error(`Unsupported content-encoding: ${encoding}`);
|
|
||||||
}
|
|
||||||
@@ -2,77 +2,59 @@ import express from "express";
|
|||||||
import { APIFormat } from "../../../shared/key-management";
|
import { APIFormat } from "../../../shared/key-management";
|
||||||
import { assertNever } from "../../../shared/utils";
|
import { assertNever } from "../../../shared/utils";
|
||||||
import { initializeSseStream } from "../../../shared/streaming";
|
import { initializeSseStream } from "../../../shared/streaming";
|
||||||
import http from "http";
|
|
||||||
|
|
||||||
/**
|
function getMessageContent({
|
||||||
* Returns a Markdown-formatted message that renders semi-nicely in most chat
|
title,
|
||||||
* frontends. For example:
|
message,
|
||||||
*
|
obj,
|
||||||
* **Proxy error (HTTP 404 Not Found)**
|
}: {
|
||||||
* The proxy encountered an error while trying to send your prompt to the upstream service. Further technical details are provided below.
|
|
||||||
* ***
|
|
||||||
* *The requested Claude model might not exist, or the key might not be provisioned for it.*
|
|
||||||
* ```
|
|
||||||
* {
|
|
||||||
* "type": "error",
|
|
||||||
* "error": {
|
|
||||||
* "type": "not_found_error",
|
|
||||||
* "message": "model: some-invalid-model-id",
|
|
||||||
* },
|
|
||||||
* "proxy_note": "The requested Claude model might not exist, or the key might not be provisioned for it."
|
|
||||||
* }
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
function getMessageContent(params: {
|
|
||||||
title: string;
|
title: string;
|
||||||
message: string;
|
message: string;
|
||||||
obj?: Record<string, any>;
|
obj?: Record<string, any>;
|
||||||
}) {
|
}) {
|
||||||
const { title, message, obj } = params;
|
/*
|
||||||
const note = obj?.proxy_note || obj?.error?.message || "";
|
Constructs a Markdown-formatted message that renders semi-nicely in most chat
|
||||||
const header = `### **${title}**`;
|
frontends. For example:
|
||||||
const friendlyMessage = note ? `${message}\n\n----\n\n*${note}*` : message;
|
|
||||||
|
**Proxy error (HTTP 404 Not Found)**
|
||||||
const serializedObj = obj
|
The proxy encountered an error while trying to send your prompt to the upstream service. Further technical details are provided below.
|
||||||
? ["```", JSON.stringify(obj, null, 2), "```"].join("\n")
|
***
|
||||||
: "";
|
*The requested Claude model might not exist, or the key might not be provisioned for it.*
|
||||||
|
```
|
||||||
const { stack } = JSON.parse(JSON.stringify(obj ?? {}));
|
{
|
||||||
let prettyTrace = "";
|
"type": "error",
|
||||||
if (stack && obj) {
|
"error": {
|
||||||
prettyTrace = [
|
"type": "not_found_error",
|
||||||
"Include this trace when reporting an issue.",
|
"message": "model: some-invalid-model-id",
|
||||||
"```",
|
},
|
||||||
stack,
|
"proxy_note": "The requested Claude model might not exist, or the key might not be provisioned for it."
|
||||||
"```",
|
|
||||||
].join("\n");
|
|
||||||
delete obj.stack;
|
|
||||||
}
|
}
|
||||||
|
```
|
||||||
return [
|
*/
|
||||||
header,
|
const note = obj?.proxy_note || obj?.error?.message || "";
|
||||||
friendlyMessage,
|
const friendlyMessage = note ? `${message}\n\n***\n\n*${note}*` : message;
|
||||||
serializedObj,
|
const details = JSON.parse(JSON.stringify(obj ?? {}));
|
||||||
prettyTrace,
|
let stack = "";
|
||||||
"<!-- oai-proxy-error -->",
|
if (details.stack) {
|
||||||
].join("\n\n");
|
stack = `\n\nInclude this trace when reporting an issue.\n\`\`\`\n${details.stack}\n\`\`\``;
|
||||||
|
delete details.stack;
|
||||||
|
}
|
||||||
|
return `\n\n**${title}**\n${friendlyMessage}${
|
||||||
|
obj ? `\n\`\`\`\n${JSON.stringify(obj, null, 2)}\n\`\`\`\n${stack}` : ""
|
||||||
|
}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
type ErrorGeneratorOptions = {
|
type ErrorGeneratorOptions = {
|
||||||
format: APIFormat | "unknown";
|
format: APIFormat | "unknown";
|
||||||
title: string;
|
title: string;
|
||||||
message: string;
|
message: string;
|
||||||
obj?: Record<string, any>;
|
obj?: object;
|
||||||
reqId: string | number | object;
|
reqId: string | number | object;
|
||||||
model?: string;
|
model?: string;
|
||||||
statusCode?: number;
|
statusCode?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
export function tryInferFormat(body: any): APIFormat | "unknown" {
|
||||||
* Very crude inference of the request format based on the request body. Don't
|
|
||||||
* rely on this to be very accurate.
|
|
||||||
*/
|
|
||||||
function tryInferFormat(body: any): APIFormat | "unknown" {
|
|
||||||
if (typeof body !== "object" || !body.model) {
|
if (typeof body !== "object" || !body.model) {
|
||||||
return "unknown";
|
return "unknown";
|
||||||
}
|
}
|
||||||
@@ -96,82 +78,42 @@ function tryInferFormat(body: any): APIFormat | "unknown" {
|
|||||||
return "unknown";
|
return "unknown";
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
export function sendErrorToClient({
|
||||||
* Redacts the hostname from the error message if it contains a DNS resolution
|
options,
|
||||||
* error. This is to avoid leaking upstream hostnames on DNS resolution errors,
|
req,
|
||||||
* as those may contain sensitive information about the proxy's configuration.
|
res,
|
||||||
*/
|
}: {
|
||||||
function redactHostname(options: ErrorGeneratorOptions): ErrorGeneratorOptions {
|
|
||||||
if (!options.message.includes("getaddrinfo")) return options;
|
|
||||||
|
|
||||||
const redacted = { ...options };
|
|
||||||
redacted.message = "Could not resolve hostname";
|
|
||||||
|
|
||||||
if (typeof redacted.obj?.error === "object") {
|
|
||||||
redacted.obj = {
|
|
||||||
...redacted.obj,
|
|
||||||
error: { message: "Could not resolve hostname" },
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return redacted;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Generates an appropriately-formatted error response and sends it to the
|
|
||||||
* client over their requested transport (blocking or SSE stream).
|
|
||||||
*/
|
|
||||||
export function sendErrorToClient(params: {
|
|
||||||
options: ErrorGeneratorOptions;
|
options: ErrorGeneratorOptions;
|
||||||
req: express.Request;
|
req: express.Request;
|
||||||
res: express.Response;
|
res: express.Response;
|
||||||
}) {
|
}) {
|
||||||
const { req, res } = params;
|
const { format: inputFormat } = options;
|
||||||
const options = redactHostname(params.options);
|
|
||||||
const { statusCode, message, title, obj: details } = options;
|
|
||||||
|
|
||||||
// Since we want to send the error in a format the client understands, we
|
// This is an error thrown before we know the format of the request, so we
|
||||||
// need to know the request format. `setApiFormat` might not have been called
|
// can't send a response in the format the client expects.
|
||||||
// yet, so we'll try to infer it from the request body.
|
|
||||||
const format =
|
const format =
|
||||||
options.format === "unknown" ? tryInferFormat(req.body) : options.format;
|
inputFormat === "unknown" ? tryInferFormat(req.body) : inputFormat;
|
||||||
if (format === "unknown") {
|
if (format === "unknown") {
|
||||||
// Early middleware error (auth, rate limit) so we can only send something
|
return res.status(options.statusCode || 400).json({
|
||||||
// generic.
|
error: options.message,
|
||||||
const code = statusCode || 400;
|
details: options.obj,
|
||||||
const hasDetails = details && Object.keys(details).length > 0;
|
|
||||||
return res.status(code).json({
|
|
||||||
error: {
|
|
||||||
message,
|
|
||||||
type: http.STATUS_CODES[code]!.replace(/\s+/g, "_").toLowerCase(),
|
|
||||||
},
|
|
||||||
...(hasDetails ? { details } : {}),
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// Cannot modify headers if client opted into streaming and made it into the
|
const completion = buildSpoofedCompletion({ ...options, format });
|
||||||
// proxy request queue, because that immediately starts an SSE stream.
|
const event = buildSpoofedSSE({ ...options, format });
|
||||||
if (!res.headersSent) {
|
const isStreaming =
|
||||||
res.setHeader("x-oai-proxy-error", title);
|
req.isStreaming || req.body.stream === true || req.body.stream === "true";
|
||||||
res.setHeader("x-oai-proxy-error-status", statusCode || 500);
|
|
||||||
}
|
|
||||||
|
|
||||||
// By this point, we know the request format. To get the error to display in
|
|
||||||
// chat clients' UIs, we'll send it as a 200 response as a spoofed completion
|
|
||||||
// from the language model. Depending on whether the client is streaming, we
|
|
||||||
// will either send an SSE event or a JSON response.
|
|
||||||
const isStreaming = req.isStreaming || String(req.body.stream) === "true";
|
|
||||||
if (isStreaming) {
|
if (isStreaming) {
|
||||||
// User can have opted into streaming but not made it into the queue yet,
|
|
||||||
// in which case the stream must be started first.
|
|
||||||
if (!res.headersSent) {
|
if (!res.headersSent) {
|
||||||
initializeSseStream(res);
|
initializeSseStream(res);
|
||||||
}
|
}
|
||||||
res.write(buildSpoofedSSE({ ...options, format }));
|
res.write(event);
|
||||||
res.write(`data: [DONE]\n\n`);
|
res.write(`data: [DONE]\n\n`);
|
||||||
res.end();
|
res.end();
|
||||||
} else {
|
} else {
|
||||||
res.status(200).json(buildSpoofedCompletion({ ...options, format }));
|
res.status(200).json(completion);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -209,11 +151,6 @@ export function buildSpoofedCompletion({
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
case "mistral-text":
|
|
||||||
return {
|
|
||||||
outputs: [{ text: content, stop_reason: title }],
|
|
||||||
model,
|
|
||||||
};
|
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
return {
|
return {
|
||||||
id: "error-" + id,
|
id: "error-" + id,
|
||||||
@@ -245,7 +182,13 @@ export function buildSpoofedCompletion({
|
|||||||
stop_sequence: null,
|
stop_sequence: null,
|
||||||
};
|
};
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
|
// TODO: Native Google AI non-streaming responses are not supported, this
|
||||||
|
// is an untested guess at what the response should look like.
|
||||||
return {
|
return {
|
||||||
|
id: "error-" + id,
|
||||||
|
object: "chat.completion",
|
||||||
|
created: Date.now(),
|
||||||
|
model,
|
||||||
candidates: [
|
candidates: [
|
||||||
{
|
{
|
||||||
content: { parts: [{ text: content }], role: "model" },
|
content: { parts: [{ text: content }], role: "model" },
|
||||||
@@ -292,11 +235,6 @@ export function buildSpoofedSSE({
|
|||||||
choices: [{ delta: { content }, index: 0, finish_reason: title }],
|
choices: [{ delta: { content }, index: 0, finish_reason: title }],
|
||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
case "mistral-text":
|
|
||||||
event = {
|
|
||||||
outputs: [{ text: content, stop_reason: title }],
|
|
||||||
};
|
|
||||||
break;
|
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
event = {
|
event = {
|
||||||
id: "cmpl-" + id,
|
id: "cmpl-" + id,
|
||||||
@@ -326,10 +264,7 @@ export function buildSpoofedSSE({
|
|||||||
};
|
};
|
||||||
break;
|
break;
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
// TODO: google ai supports two streaming transports, SSE and JSON.
|
return JSON.stringify({
|
||||||
// we currently only support SSE.
|
|
||||||
// return JSON.stringify({
|
|
||||||
event = {
|
|
||||||
candidates: [
|
candidates: [
|
||||||
{
|
{
|
||||||
content: { parts: [{ text: content }], role: "model" },
|
content: { parts: [{ text: content }], role: "model" },
|
||||||
@@ -339,8 +274,7 @@ export function buildSpoofedSSE({
|
|||||||
safetyRatings: [],
|
safetyRatings: [],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
};
|
});
|
||||||
break;
|
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
return JSON.stringify(obj);
|
return JSON.stringify(obj);
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -1,70 +0,0 @@
|
|||||||
import { sendProxyError } from "../common";
|
|
||||||
import type { RawResponseBodyHandler } from "./index";
|
|
||||||
import { decompressBuffer } from "./compression";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the response from the upstream service and decodes the body if
|
|
||||||
* necessary. If the response is JSON, it will be parsed and returned as an
|
|
||||||
* object. Otherwise, it will be returned as a string. Does not handle streaming
|
|
||||||
* responses.
|
|
||||||
* @throws {Error} Unsupported content-encoding or invalid application/json body
|
|
||||||
*/
|
|
||||||
export const handleBlockingResponse: RawResponseBodyHandler = async (
|
|
||||||
proxyRes,
|
|
||||||
req,
|
|
||||||
res
|
|
||||||
) => {
|
|
||||||
if (req.isStreaming) {
|
|
||||||
const err = new Error(
|
|
||||||
"handleBlockingResponse called for a streaming request."
|
|
||||||
);
|
|
||||||
req.log.error({ stack: err.stack, api: req.inboundApi }, err.message);
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
let chunks: Buffer[] = [];
|
|
||||||
proxyRes.on("data", (chunk) => chunks.push(chunk));
|
|
||||||
proxyRes.on("end", async () => {
|
|
||||||
const contentEncoding = proxyRes.headers["content-encoding"];
|
|
||||||
const contentType = proxyRes.headers["content-type"];
|
|
||||||
let body: string | Buffer = Buffer.concat(chunks);
|
|
||||||
const rejectWithMessage = function (msg: string, err: Error) {
|
|
||||||
const error = `${msg} (${err.message})`;
|
|
||||||
req.log.warn(
|
|
||||||
{ msg: error, stack: err.stack },
|
|
||||||
"Error in blocking response handler"
|
|
||||||
);
|
|
||||||
sendProxyError(req, res, 500, "Internal Server Error", { error });
|
|
||||||
return reject(error);
|
|
||||||
};
|
|
||||||
|
|
||||||
try {
|
|
||||||
body = await decompressBuffer(body, contentEncoding);
|
|
||||||
} catch (e) {
|
|
||||||
return rejectWithMessage(`Could not decode response body`, e);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
return resolve(tryParseAsJson(body, contentType));
|
|
||||||
} catch (e) {
|
|
||||||
return rejectWithMessage("API responded with invalid JSON", e);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
function tryParseAsJson(body: string, contentType?: string) {
|
|
||||||
// If the response is declared as JSON, it must parse or we will throw
|
|
||||||
if (contentType?.includes("application/json")) {
|
|
||||||
return JSON.parse(body);
|
|
||||||
}
|
|
||||||
// If it's not declared as JSON, some APIs we'll try to parse it as JSON
|
|
||||||
// anyway since some APIs return the wrong content-type header in some cases.
|
|
||||||
// If it fails to parse, we'll just return the raw body without throwing.
|
|
||||||
try {
|
|
||||||
return JSON.parse(body);
|
|
||||||
} catch (e) {
|
|
||||||
return body;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,61 +1,59 @@
|
|||||||
import express from "express";
|
import express from "express";
|
||||||
import { pipeline, Readable, Transform } from "stream";
|
import { pipeline, Readable, Transform } from "stream";
|
||||||
|
import StreamArray from "stream-json/streamers/StreamArray";
|
||||||
import { StringDecoder } from "string_decoder";
|
import { StringDecoder } from "string_decoder";
|
||||||
import { promisify } from "util";
|
import { promisify } from "util";
|
||||||
import type { logger } from "../../../logger";
|
|
||||||
import { BadRequestError, RetryableError } from "../../../shared/errors";
|
|
||||||
import { APIFormat, keyPool } from "../../../shared/key-management";
|
import { APIFormat, keyPool } from "../../../shared/key-management";
|
||||||
import {
|
import {
|
||||||
copySseResponseHeaders,
|
copySseResponseHeaders,
|
||||||
initializeSseStream,
|
initializeSseStream,
|
||||||
} from "../../../shared/streaming";
|
} from "../../../shared/streaming";
|
||||||
import { reenqueueRequest } from "../../queue";
|
import type { logger } from "../../../logger";
|
||||||
import type { RawResponseBodyHandler } from ".";
|
import { enqueue } from "../../queue";
|
||||||
import { handleBlockingResponse } from "./handle-blocking-response";
|
import { decodeResponseBody, RawResponseBodyHandler, RetryableError } from ".";
|
||||||
import { buildSpoofedSSE, sendErrorToClient } from "./error-generator";
|
|
||||||
import { getAwsEventStreamDecoder } from "./streaming/aws-event-stream-decoder";
|
import { getAwsEventStreamDecoder } from "./streaming/aws-event-stream-decoder";
|
||||||
import { EventAggregator } from "./streaming/event-aggregator";
|
import { EventAggregator } from "./streaming/event-aggregator";
|
||||||
import { SSEMessageTransformer } from "./streaming/sse-message-transformer";
|
import { SSEMessageTransformer } from "./streaming/sse-message-transformer";
|
||||||
import { SSEStreamAdapter } from "./streaming/sse-stream-adapter";
|
import { SSEStreamAdapter } from "./streaming/sse-stream-adapter";
|
||||||
import { getStreamDecompressor } from "./compression";
|
import { buildSpoofedSSE, sendErrorToClient } from "./error-generator";
|
||||||
|
import { BadRequestError } from "../../../shared/errors";
|
||||||
|
|
||||||
const pipelineAsync = promisify(pipeline);
|
const pipelineAsync = promisify(pipeline);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* `handleStreamedResponse` consumes a streamed response from the upstream API,
|
* `handleStreamedResponse` consumes and transforms a streamed response from the
|
||||||
* decodes chunk-by-chunk into a stream of events, transforms those events into
|
* upstream service, forwarding events to the client in their requested format.
|
||||||
* the client's requested format, and forwards the result to the client.
|
|
||||||
*
|
|
||||||
* After the entire stream has been consumed, it resolves with the full response
|
* After the entire stream has been consumed, it resolves with the full response
|
||||||
* body so that subsequent middleware in the chain can process it as if it were
|
* body so that subsequent middleware in the chain can process it as if it were
|
||||||
* a non-streaming response (to count output tokens, track usage, etc).
|
* a non-streaming response.
|
||||||
*
|
*
|
||||||
* In the event of an error, the request's streaming flag is unset and the
|
* In the event of an error, the request's streaming flag is unset and the non-
|
||||||
* request is bounced back to the non-streaming response handler. If the error
|
* streaming response handler is called instead.
|
||||||
* is retryable, that handler will re-enqueue the request and also reset the
|
*
|
||||||
* streaming flag. Unfortunately the streaming flag is set and unset in multiple
|
* If the error is retryable, that handler will re-enqueue the request and also
|
||||||
* places, so it's hard to keep track of.
|
* reset the streaming flag. Unfortunately the streaming flag is set and unset
|
||||||
|
* in multiple places, so it's hard to keep track of.
|
||||||
*/
|
*/
|
||||||
export const handleStreamedResponse: RawResponseBodyHandler = async (
|
export const handleStreamedResponse: RawResponseBodyHandler = async (
|
||||||
proxyRes,
|
proxyRes,
|
||||||
req,
|
req,
|
||||||
res
|
res
|
||||||
) => {
|
) => {
|
||||||
const { headers, statusCode } = proxyRes;
|
const { hash } = req.key!;
|
||||||
if (!req.isStreaming) {
|
if (!req.isStreaming) {
|
||||||
throw new Error("handleStreamedResponse called for non-streaming request.");
|
throw new Error("handleStreamedResponse called for non-streaming request.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (statusCode! > 201) {
|
if (proxyRes.statusCode! > 201) {
|
||||||
req.isStreaming = false;
|
req.isStreaming = false;
|
||||||
req.log.warn(
|
req.log.warn(
|
||||||
{ statusCode },
|
{ statusCode: proxyRes.statusCode, key: hash },
|
||||||
`Streaming request returned error status code. Falling back to non-streaming response handler.`
|
`Streaming request returned error status code. Falling back to non-streaming response handler.`
|
||||||
);
|
);
|
||||||
return handleBlockingResponse(proxyRes, req, res);
|
return decodeResponseBody(proxyRes, req, res);
|
||||||
}
|
}
|
||||||
|
|
||||||
req.log.debug({ headers }, `Starting to proxy SSE stream.`);
|
req.log.debug({ headers: proxyRes.headers }, `Starting to proxy SSE stream.`);
|
||||||
|
|
||||||
// Typically, streaming will have already been initialized by the request
|
// Typically, streaming will have already been initialized by the request
|
||||||
// queue to send heartbeat pings.
|
// queue to send heartbeat pings.
|
||||||
@@ -66,25 +64,18 @@ export const handleStreamedResponse: RawResponseBodyHandler = async (
|
|||||||
|
|
||||||
const prefersNativeEvents = req.inboundApi === req.outboundApi;
|
const prefersNativeEvents = req.inboundApi === req.outboundApi;
|
||||||
const streamOptions = {
|
const streamOptions = {
|
||||||
contentType: headers["content-type"],
|
contentType: proxyRes.headers["content-type"],
|
||||||
api: req.outboundApi,
|
api: req.outboundApi,
|
||||||
logger: req.log,
|
logger: req.log,
|
||||||
};
|
};
|
||||||
|
|
||||||
// While the request is streaming, aggregator collects all events so that we
|
// Decoder turns the raw response stream into a stream of events in some
|
||||||
// can compile them into a single response object and publish that to the
|
// format (text/event-stream, vnd.amazon.event-stream, streaming JSON, etc).
|
||||||
// remaining middleware. Because we have an OpenAI transformer for every
|
|
||||||
// supported format, EventAggregator always consumes OpenAI events so that we
|
|
||||||
// only have to write one aggregator (OpenAI input) for each output format.
|
|
||||||
const aggregator = new EventAggregator(req);
|
|
||||||
|
|
||||||
const decompressor = getStreamDecompressor(headers["content-encoding"]);
|
|
||||||
// Decoder reads from the response bytes to produce a stream of plaintext.
|
|
||||||
const decoder = getDecoder({ ...streamOptions, input: proxyRes });
|
const decoder = getDecoder({ ...streamOptions, input: proxyRes });
|
||||||
// Adapter consumes the decoded text and produces server-sent events so we
|
// Adapter transforms the decoded events into server-sent events.
|
||||||
// have a standard event format for the client and to translate between API
|
|
||||||
// message formats.
|
|
||||||
const adapter = new SSEStreamAdapter(streamOptions);
|
const adapter = new SSEStreamAdapter(streamOptions);
|
||||||
|
// Aggregator compiles all events into a single response object.
|
||||||
|
const aggregator = new EventAggregator({ format: req.outboundApi });
|
||||||
// Transformer converts server-sent events from one vendor's API message
|
// Transformer converts server-sent events from one vendor's API message
|
||||||
// format to another.
|
// format to another.
|
||||||
const transformer = new SSEMessageTransformer({
|
const transformer = new SSEMessageTransformer({
|
||||||
@@ -106,7 +97,7 @@ export const handleStreamedResponse: RawResponseBodyHandler = async (
|
|||||||
try {
|
try {
|
||||||
await Promise.race([
|
await Promise.race([
|
||||||
handleAbortedStream(req, res),
|
handleAbortedStream(req, res),
|
||||||
pipelineAsync(proxyRes, decompressor, decoder, adapter, transformer),
|
pipelineAsync(proxyRes, decoder, adapter, transformer),
|
||||||
]);
|
]);
|
||||||
req.log.debug(`Finished proxying SSE stream.`);
|
req.log.debug(`Finished proxying SSE stream.`);
|
||||||
res.end();
|
res.end();
|
||||||
@@ -114,7 +105,12 @@ export const handleStreamedResponse: RawResponseBodyHandler = async (
|
|||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (err instanceof RetryableError) {
|
if (err instanceof RetryableError) {
|
||||||
keyPool.markRateLimited(req.key!);
|
keyPool.markRateLimited(req.key!);
|
||||||
await reenqueueRequest(req);
|
req.log.warn(
|
||||||
|
{ key: req.key!.hash, retryCount: req.retryCount },
|
||||||
|
`Re-enqueueing request due to retryable error during streaming response.`
|
||||||
|
);
|
||||||
|
req.retryCount++;
|
||||||
|
await enqueue(req);
|
||||||
} else if (err instanceof BadRequestError) {
|
} else if (err instanceof BadRequestError) {
|
||||||
sendErrorToClient({
|
sendErrorToClient({
|
||||||
req,
|
req,
|
||||||
@@ -142,17 +138,7 @@ export const handleStreamedResponse: RawResponseBodyHandler = async (
|
|||||||
res.write(`data: [DONE]\n\n`);
|
res.write(`data: [DONE]\n\n`);
|
||||||
res.end();
|
res.end();
|
||||||
}
|
}
|
||||||
|
throw err;
|
||||||
// At this point the response is closed. If the request resulted in any
|
|
||||||
// tokens being consumed (suggesting a mid-stream error), we will resolve
|
|
||||||
// and continue the middleware chain so tokens can be counted.
|
|
||||||
if (aggregator.hasEvents()) {
|
|
||||||
return aggregator.getFinalResponse();
|
|
||||||
} else {
|
|
||||||
// If there is nothing, then this was a completely failed prompt that
|
|
||||||
// will not have billed any tokens. Throw to stop the middleware chain.
|
|
||||||
throw err;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -173,13 +159,14 @@ function getDecoder(options: {
|
|||||||
logger: typeof logger;
|
logger: typeof logger;
|
||||||
contentType?: string;
|
contentType?: string;
|
||||||
}) {
|
}) {
|
||||||
const { contentType, input, logger } = options;
|
const { api, contentType, input, logger } = options;
|
||||||
if (contentType?.includes("application/vnd.amazon.eventstream")) {
|
if (contentType?.includes("application/vnd.amazon.eventstream")) {
|
||||||
return getAwsEventStreamDecoder({ input, logger });
|
return getAwsEventStreamDecoder({ input, logger });
|
||||||
} else if (contentType?.includes("application/json")) {
|
} else if (api === "google-ai") {
|
||||||
throw new Error("JSON streaming not supported, request SSE instead");
|
return StreamArray.withParser();
|
||||||
} else {
|
} else {
|
||||||
// Ensures split chunks across multi-byte characters are handled correctly.
|
// Passthrough stream, but ensures split chunks across multi-byte characters
|
||||||
|
// are handled correctly.
|
||||||
const stringDecoder = new StringDecoder("utf8");
|
const stringDecoder = new StringDecoder("utf8");
|
||||||
return new Transform({
|
return new Transform({
|
||||||
readableObjectMode: true,
|
readableObjectMode: true,
|
||||||
|
|||||||
@@ -1,9 +1,10 @@
|
|||||||
/* This file is fucking horrendous, sorry */
|
/* This file is fucking horrendous, sorry */
|
||||||
// TODO: extract all per-service error response handling into its own modules
|
|
||||||
import { Request, Response } from "express";
|
import { Request, Response } from "express";
|
||||||
import * as http from "http";
|
import * as http from "http";
|
||||||
import { config } from "../../../config";
|
import util from "util";
|
||||||
import { HttpError, RetryableError } from "../../../shared/errors";
|
import zlib from "zlib";
|
||||||
|
import { enqueue, trackWaitTime } from "../../queue";
|
||||||
|
import { HttpError } from "../../../shared/errors";
|
||||||
import { keyPool } from "../../../shared/key-management";
|
import { keyPool } from "../../../shared/key-management";
|
||||||
import { getOpenAIModelFamily } from "../../../shared/models";
|
import { getOpenAIModelFamily } from "../../../shared/models";
|
||||||
import { countTokens } from "../../../shared/tokenization";
|
import { countTokens } from "../../../shared/tokenization";
|
||||||
@@ -12,7 +13,6 @@ import {
|
|||||||
incrementTokenCount,
|
incrementTokenCount,
|
||||||
} from "../../../shared/users/user-store";
|
} from "../../../shared/users/user-store";
|
||||||
import { assertNever } from "../../../shared/utils";
|
import { assertNever } from "../../../shared/utils";
|
||||||
import { reenqueueRequest, trackWaitTime } from "../../queue";
|
|
||||||
import { refundLastAttempt } from "../../rate-limit";
|
import { refundLastAttempt } from "../../rate-limit";
|
||||||
import {
|
import {
|
||||||
getCompletionFromBody,
|
getCompletionFromBody,
|
||||||
@@ -20,23 +20,39 @@ import {
|
|||||||
isTextGenerationRequest,
|
isTextGenerationRequest,
|
||||||
sendProxyError,
|
sendProxyError,
|
||||||
} from "../common";
|
} from "../common";
|
||||||
import { handleBlockingResponse } from "./handle-blocking-response";
|
|
||||||
import { handleStreamedResponse } from "./handle-streamed-response";
|
import { handleStreamedResponse } from "./handle-streamed-response";
|
||||||
import { logPrompt } from "./log-prompt";
|
import { logPrompt } from "./log-prompt";
|
||||||
import { logEvent } from "./log-event";
|
|
||||||
import { saveImage } from "./save-image";
|
import { saveImage } from "./save-image";
|
||||||
|
import { config } from "../../../config";
|
||||||
|
|
||||||
|
const DECODER_MAP = {
|
||||||
|
gzip: util.promisify(zlib.gunzip),
|
||||||
|
deflate: util.promisify(zlib.inflate),
|
||||||
|
br: util.promisify(zlib.brotliDecompress),
|
||||||
|
};
|
||||||
|
|
||||||
|
const isSupportedContentEncoding = (
|
||||||
|
contentEncoding: string
|
||||||
|
): contentEncoding is keyof typeof DECODER_MAP => {
|
||||||
|
return contentEncoding in DECODER_MAP;
|
||||||
|
};
|
||||||
|
|
||||||
|
export class RetryableError extends Error {
|
||||||
|
constructor(message: string) {
|
||||||
|
super(message);
|
||||||
|
this.name = "RetryableError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Either decodes or streams the entire response body and then resolves with it.
|
* Either decodes or streams the entire response body and then passes it as the
|
||||||
* @returns The response body as a string or parsed JSON object depending on the
|
* last argument to the rest of the middleware stack.
|
||||||
* response's content-type.
|
|
||||||
*/
|
*/
|
||||||
export type RawResponseBodyHandler = (
|
export type RawResponseBodyHandler = (
|
||||||
proxyRes: http.IncomingMessage,
|
proxyRes: http.IncomingMessage,
|
||||||
req: Request,
|
req: Request,
|
||||||
res: Response
|
res: Response
|
||||||
) => Promise<string | Record<string, any>>;
|
) => Promise<string | Record<string, any>>;
|
||||||
|
|
||||||
export type ProxyResHandlerWithBody = (
|
export type ProxyResHandlerWithBody = (
|
||||||
proxyRes: http.IncomingMessage,
|
proxyRes: http.IncomingMessage,
|
||||||
req: Request,
|
req: Request,
|
||||||
@@ -47,7 +63,7 @@ export type ProxyResHandlerWithBody = (
|
|||||||
*/
|
*/
|
||||||
body: string | Record<string, any>
|
body: string | Record<string, any>
|
||||||
) => Promise<void>;
|
) => Promise<void>;
|
||||||
export type ProxyResMiddleware = ProxyResHandlerWithBody[] | undefined;
|
export type ProxyResMiddleware = ProxyResHandlerWithBody[];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a on.proxyRes handler that executes the given middleware stack after
|
* Returns a on.proxyRes handler that executes the given middleware stack after
|
||||||
@@ -60,10 +76,6 @@ export type ProxyResMiddleware = ProxyResHandlerWithBody[] | undefined;
|
|||||||
* middleware from executing as it consumes the stream and forwards events to
|
* middleware from executing as it consumes the stream and forwards events to
|
||||||
* the client. Once the stream is closed, the finalized body will be attached
|
* the client. Once the stream is closed, the finalized body will be attached
|
||||||
* to res.body and the remaining middleware will execute.
|
* to res.body and the remaining middleware will execute.
|
||||||
*
|
|
||||||
* @param apiMiddleware - Custom middleware to execute after the common response
|
|
||||||
* handlers. These *only* execute for non-streaming responses, so should be used
|
|
||||||
* to transform non-streaming responses into the desired format.
|
|
||||||
*/
|
*/
|
||||||
export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => {
|
export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => {
|
||||||
return async (
|
return async (
|
||||||
@@ -71,47 +83,37 @@ export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => {
|
|||||||
req: Request,
|
req: Request,
|
||||||
res: Response
|
res: Response
|
||||||
) => {
|
) => {
|
||||||
// Proxied request has by now been sent to the upstream API, so we revert
|
|
||||||
// tracked mutations that were only needed to send the request.
|
|
||||||
// This generally means path adjustment, headers, and body serialization.
|
|
||||||
if (req.changeManager) {
|
|
||||||
req.changeManager.revert();
|
|
||||||
}
|
|
||||||
|
|
||||||
const initialHandler = req.isStreaming
|
const initialHandler = req.isStreaming
|
||||||
? handleStreamedResponse
|
? handleStreamedResponse
|
||||||
: handleBlockingResponse;
|
: decodeResponseBody;
|
||||||
let lastMiddleware = initialHandler.name;
|
|
||||||
|
|
||||||
if (Buffer.isBuffer(req.body)) {
|
let lastMiddleware = initialHandler.name;
|
||||||
req.body = JSON.parse(req.body.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const body = await initialHandler(proxyRes, req, res);
|
const body = await initialHandler(proxyRes, req, res);
|
||||||
|
|
||||||
const middlewareStack: ProxyResMiddleware = [];
|
const middlewareStack: ProxyResMiddleware = [];
|
||||||
|
|
||||||
if (req.isStreaming) {
|
if (req.isStreaming) {
|
||||||
// Handlers for streaming requests must never write to the response.
|
// `handleStreamedResponse` writes to the response and ends it, so
|
||||||
|
// we can only execute middleware that doesn't write to the response.
|
||||||
middlewareStack.push(
|
middlewareStack.push(
|
||||||
trackKeyRateLimit,
|
trackRateLimit,
|
||||||
countResponseTokens,
|
countResponseTokens,
|
||||||
incrementUsage,
|
incrementUsage,
|
||||||
logPrompt,
|
logPrompt
|
||||||
logEvent
|
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
middlewareStack.push(
|
middlewareStack.push(
|
||||||
trackKeyRateLimit,
|
trackRateLimit,
|
||||||
injectProxyInfo,
|
addProxyInfo,
|
||||||
handleUpstreamErrors,
|
handleUpstreamErrors,
|
||||||
countResponseTokens,
|
countResponseTokens,
|
||||||
incrementUsage,
|
incrementUsage,
|
||||||
copyHttpHeaders,
|
copyHttpHeaders,
|
||||||
saveImage,
|
saveImage,
|
||||||
logPrompt,
|
logPrompt,
|
||||||
logEvent,
|
...apiMiddleware
|
||||||
...(apiMiddleware ?? [])
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -135,15 +137,15 @@ export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const { stack, message } = error;
|
const { stack, message } = error;
|
||||||
const details = { stack, message, lastMiddleware, key: req.key?.hash };
|
const info = { stack, lastMiddleware, key: req.key?.hash };
|
||||||
const description = `Error while executing proxy response middleware: ${lastMiddleware} (${message})`;
|
const description = `Error while executing proxy response middleware: ${lastMiddleware} (${message})`;
|
||||||
|
|
||||||
if (res.headersSent) {
|
if (res.headersSent) {
|
||||||
req.log.error(details, description);
|
req.log.error(info, description);
|
||||||
if (!res.writableEnded) res.end();
|
if (!res.writableEnded) res.end();
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
req.log.error(details, description);
|
req.log.error(info, description);
|
||||||
res
|
res
|
||||||
.status(500)
|
.status(500)
|
||||||
.json({ error: "Internal server error", proxy_note: description });
|
.json({ error: "Internal server error", proxy_note: description });
|
||||||
@@ -152,6 +154,72 @@ export const createOnProxyResHandler = (apiMiddleware: ProxyResMiddleware) => {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
async function reenqueueRequest(req: Request) {
|
||||||
|
req.log.info(
|
||||||
|
{ key: req.key?.hash, retryCount: req.retryCount },
|
||||||
|
`Re-enqueueing request due to retryable error`
|
||||||
|
);
|
||||||
|
req.retryCount++;
|
||||||
|
await enqueue(req);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles the response from the upstream service and decodes the body if
|
||||||
|
* necessary. If the response is JSON, it will be parsed and returned as an
|
||||||
|
* object. Otherwise, it will be returned as a string.
|
||||||
|
* @throws {Error} Unsupported content-encoding or invalid application/json body
|
||||||
|
*/
|
||||||
|
export const decodeResponseBody: RawResponseBodyHandler = async (
|
||||||
|
proxyRes,
|
||||||
|
req,
|
||||||
|
res
|
||||||
|
) => {
|
||||||
|
if (req.isStreaming) {
|
||||||
|
const err = new Error("decodeResponseBody called for a streaming request.");
|
||||||
|
req.log.error({ stack: err.stack, api: req.inboundApi }, err.message);
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
|
||||||
|
return new Promise<string>((resolve, reject) => {
|
||||||
|
let chunks: Buffer[] = [];
|
||||||
|
proxyRes.on("data", (chunk) => chunks.push(chunk));
|
||||||
|
proxyRes.on("end", async () => {
|
||||||
|
let body = Buffer.concat(chunks);
|
||||||
|
|
||||||
|
const contentEncoding = proxyRes.headers["content-encoding"];
|
||||||
|
if (contentEncoding) {
|
||||||
|
if (isSupportedContentEncoding(contentEncoding)) {
|
||||||
|
const decoder = DECODER_MAP[contentEncoding];
|
||||||
|
// @ts-ignore - started failing after upgrading TypeScript, don't care
|
||||||
|
// as it was never a problem.
|
||||||
|
body = await decoder(body);
|
||||||
|
} else {
|
||||||
|
const error = `Proxy received response with unsupported content-encoding: ${contentEncoding}`;
|
||||||
|
req.log.warn({ contentEncoding, key: req.key?.hash }, error);
|
||||||
|
sendProxyError(req, res, 500, "Internal Server Error", {
|
||||||
|
error,
|
||||||
|
contentEncoding,
|
||||||
|
});
|
||||||
|
return reject(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (proxyRes.headers["content-type"]?.includes("application/json")) {
|
||||||
|
const json = JSON.parse(body.toString());
|
||||||
|
return resolve(json);
|
||||||
|
}
|
||||||
|
return resolve(body.toString());
|
||||||
|
} catch (e) {
|
||||||
|
const msg = `Proxy received response with invalid JSON: ${e.message}`;
|
||||||
|
req.log.warn({ error: e.stack, key: req.key?.hash }, msg);
|
||||||
|
sendProxyError(req, res, 500, "Internal Server Error", { error: msg });
|
||||||
|
return reject(msg);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
type ProxiedErrorPayload = {
|
type ProxiedErrorPayload = {
|
||||||
error?: Record<string, any>;
|
error?: Record<string, any>;
|
||||||
message?: string;
|
message?: string;
|
||||||
@@ -174,64 +242,58 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
) => {
|
) => {
|
||||||
const statusCode = proxyRes.statusCode || 500;
|
const statusCode = proxyRes.statusCode || 500;
|
||||||
const statusMessage = proxyRes.statusMessage || "Internal Server Error";
|
const statusMessage = proxyRes.statusMessage || "Internal Server Error";
|
||||||
const service = req.key!.service;
|
|
||||||
// Not an error, continue to next response handler
|
|
||||||
if (statusCode < 400) return;
|
|
||||||
|
|
||||||
// Parse the error response body
|
if (statusCode < 400) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
let errorPayload: ProxiedErrorPayload;
|
let errorPayload: ProxiedErrorPayload;
|
||||||
|
const tryAgainMessage = keyPool.available(req.body?.model)
|
||||||
|
? `There may be more keys available for this model; try again in a few seconds.`
|
||||||
|
: "There are no more keys available for this model.";
|
||||||
|
|
||||||
try {
|
try {
|
||||||
assertJsonResponse(body);
|
assertJsonResponse(body);
|
||||||
errorPayload = body;
|
errorPayload = body;
|
||||||
} catch (parseError) {
|
} catch (parseError) {
|
||||||
const strBody = String(body).slice(0, 128);
|
// Likely Bad Gateway or Gateway Timeout from upstream's reverse proxy
|
||||||
req.log.error({ statusCode, strBody }, "Error body is not JSON");
|
const hash = req.key?.hash;
|
||||||
|
req.log.warn({ statusCode, statusMessage, key: hash }, parseError.message);
|
||||||
|
|
||||||
const details = {
|
const errorObject = {
|
||||||
error: parseError.message,
|
error: parseError.message,
|
||||||
status: statusCode,
|
status: statusCode,
|
||||||
statusMessage,
|
statusMessage,
|
||||||
proxy_note: `Proxy got back an error, but it was not in JSON format. This is likely a temporary problem with the upstream service. Response body: ${strBody}`,
|
proxy_note: `Proxy got back an error, but it was not in JSON format. This is likely a temporary problem with the upstream service.`,
|
||||||
};
|
};
|
||||||
|
|
||||||
sendProxyError(req, res, statusCode, statusMessage, details);
|
sendProxyError(req, res, statusCode, statusMessage, errorObject);
|
||||||
throw new HttpError(statusCode, parseError.message);
|
throw new HttpError(statusCode, parseError.message);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Extract the error type from the response body depending on the service
|
|
||||||
if (service === "gcp") {
|
|
||||||
if (Array.isArray(errorPayload)) {
|
|
||||||
errorPayload = errorPayload[0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
const errorType =
|
const errorType =
|
||||||
errorPayload.error?.code ||
|
errorPayload.error?.code ||
|
||||||
errorPayload.error?.type ||
|
errorPayload.error?.type ||
|
||||||
getAwsErrorType(proxyRes.headers["x-amzn-errortype"]);
|
getAwsErrorType(proxyRes.headers["x-amzn-errortype"]);
|
||||||
|
|
||||||
req.log.warn(
|
req.log.warn(
|
||||||
{ statusCode, statusMessage, errorType, errorPayload, key: req.key?.hash },
|
{ statusCode, type: errorType, errorPayload, key: req.key?.hash },
|
||||||
`API returned an error.`
|
`Received error response from upstream. (${proxyRes.statusMessage})`
|
||||||
);
|
);
|
||||||
|
|
||||||
// Try to convert response body to a ProxiedErrorPayload with message/type
|
const service = req.key!.service;
|
||||||
if (service === "aws") {
|
if (service === "aws") {
|
||||||
|
// Try to standardize the error format for AWS
|
||||||
errorPayload.error = { message: errorPayload.message, type: errorType };
|
errorPayload.error = { message: errorPayload.message, type: errorType };
|
||||||
delete errorPayload.message;
|
delete errorPayload.message;
|
||||||
} else if (service === "gcp") {
|
|
||||||
if (errorPayload.error?.code) {
|
|
||||||
errorPayload.error = {
|
|
||||||
message: errorPayload.error.message,
|
|
||||||
type: errorPayload.error.status || errorPayload.error.code,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Figure out what to do with the error
|
|
||||||
// TODO: separate error handling for each service
|
|
||||||
if (statusCode === 400) {
|
if (statusCode === 400) {
|
||||||
|
// Bad request. For OpenAI, this is usually due to prompt length.
|
||||||
|
// For Anthropic, this is usually due to missing preamble.
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "openai":
|
case "openai":
|
||||||
|
case "google-ai":
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
case "azure":
|
case "azure":
|
||||||
const filteredCodes = ["content_policy_violation", "content_filter"];
|
const filteredCodes = ["content_policy_violation", "content_filter"];
|
||||||
@@ -241,18 +303,14 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
} else if (errorPayload.error?.code === "billing_hard_limit_reached") {
|
} else if (errorPayload.error?.code === "billing_hard_limit_reached") {
|
||||||
// For some reason, some models return this 400 error instead of the
|
// For some reason, some models return this 400 error instead of the
|
||||||
// same 429 billing error that other models return.
|
// same 429 billing error that other models return.
|
||||||
await handleOpenAIRateLimitError(req, errorPayload);
|
await handleOpenAIRateLimitError(req, tryAgainMessage, errorPayload);
|
||||||
} else {
|
} else {
|
||||||
errorPayload.proxy_note = `The upstream API rejected the request. Check the error message for details.`;
|
errorPayload.proxy_note = `The upstream API rejected the request. Your prompt may be too long for ${req.body?.model}.`;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "anthropic":
|
case "anthropic":
|
||||||
case "aws":
|
case "aws":
|
||||||
case "gcp":
|
await handleAnthropicBadRequestError(req, errorPayload);
|
||||||
await handleAnthropicAwsBadRequestError(req, errorPayload);
|
|
||||||
break;
|
|
||||||
case "google-ai":
|
|
||||||
await handleGoogleAIBadRequestError(req, errorPayload);
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assertNever(service);
|
assertNever(service);
|
||||||
@@ -260,57 +318,38 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
} else if (statusCode === 401) {
|
} else if (statusCode === 401) {
|
||||||
// Key is invalid or was revoked
|
// Key is invalid or was revoked
|
||||||
keyPool.disable(req.key!, "revoked");
|
keyPool.disable(req.key!, "revoked");
|
||||||
errorPayload.proxy_note = `Assigned API key is invalid or revoked, please try again.`;
|
errorPayload.proxy_note = `API key is invalid or revoked. ${tryAgainMessage}`;
|
||||||
} else if (statusCode === 403) {
|
} else if (statusCode === 403) {
|
||||||
switch (service) {
|
if (service === "anthropic") {
|
||||||
case "anthropic":
|
keyPool.disable(req.key!, "revoked");
|
||||||
if (
|
errorPayload.proxy_note = `API key is invalid or revoked. ${tryAgainMessage}`;
|
||||||
errorType === "permission_error" &&
|
return;
|
||||||
errorPayload.error?.message?.toLowerCase().includes("multimodal")
|
}
|
||||||
) {
|
switch (errorType) {
|
||||||
keyPool.update(req.key!, { allowsMultimodality: false });
|
case "UnrecognizedClientException":
|
||||||
await reenqueueRequest(req);
|
// Key is invalid.
|
||||||
throw new RetryableError(
|
|
||||||
"Claude request re-enqueued because key does not support multimodality."
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
|
||||||
errorPayload.proxy_note = `Assigned API key is invalid or revoked, please try again.`;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
case "aws":
|
|
||||||
switch (errorType) {
|
|
||||||
case "UnrecognizedClientException":
|
|
||||||
// Key is invalid.
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
|
||||||
errorPayload.proxy_note = `Assigned API key is invalid or revoked, please try again.`;
|
|
||||||
break;
|
|
||||||
case "AccessDeniedException":
|
|
||||||
const isModelAccessError =
|
|
||||||
errorPayload.error?.message?.includes(`specified model ID`);
|
|
||||||
if (!isModelAccessError) {
|
|
||||||
req.log.error(
|
|
||||||
{ key: req.key?.hash, model: req.body?.model },
|
|
||||||
"Disabling key due to AccessDeniedException when invoking model. If credentials are valid, check IAM permissions."
|
|
||||||
);
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
|
||||||
}
|
|
||||||
errorPayload.proxy_note = `API key doesn't have access to the requested resource. Model ID: ${req.body?.model}`;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
errorPayload.proxy_note = `Received 403 error. Key may be invalid.`;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
case "mistral-ai":
|
|
||||||
case "gcp":
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
keyPool.disable(req.key!, "revoked");
|
||||||
errorPayload.proxy_note = `Assigned API key is invalid or revoked, please try again.`;
|
errorPayload.proxy_note = `API key is invalid or revoked. ${tryAgainMessage}`;
|
||||||
return;
|
break;
|
||||||
|
case "AccessDeniedException":
|
||||||
|
const isModelAccessError =
|
||||||
|
errorPayload.error?.message?.includes(`specified model ID`);
|
||||||
|
if (!isModelAccessError) {
|
||||||
|
req.log.error(
|
||||||
|
{ key: req.key?.hash, model: req.body?.model },
|
||||||
|
"Disabling key due to AccessDeniedException when invoking model. If credentials are valid, check IAM permissions."
|
||||||
|
);
|
||||||
|
keyPool.disable(req.key!, "revoked");
|
||||||
|
}
|
||||||
|
errorPayload.proxy_note = `API key doesn't have access to the requested resource. Model ID: ${req.body?.model}`;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
errorPayload.proxy_note = `Received 403 error. Key may be invalid.`;
|
||||||
}
|
}
|
||||||
} else if (statusCode === 429) {
|
} else if (statusCode === 429) {
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "openai":
|
case "openai":
|
||||||
await handleOpenAIRateLimitError(req, errorPayload);
|
await handleOpenAIRateLimitError(req, tryAgainMessage, errorPayload);
|
||||||
break;
|
break;
|
||||||
case "anthropic":
|
case "anthropic":
|
||||||
await handleAnthropicRateLimitError(req, errorPayload);
|
await handleAnthropicRateLimitError(req, errorPayload);
|
||||||
@@ -318,9 +357,6 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
case "aws":
|
case "aws":
|
||||||
await handleAwsRateLimitError(req, errorPayload);
|
await handleAwsRateLimitError(req, errorPayload);
|
||||||
break;
|
break;
|
||||||
case "gcp":
|
|
||||||
await handleGcpRateLimitError(req, errorPayload);
|
|
||||||
break;
|
|
||||||
case "azure":
|
case "azure":
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
await handleAzureRateLimitError(req, errorPayload);
|
await handleAzureRateLimitError(req, errorPayload);
|
||||||
@@ -335,7 +371,7 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
// Most likely model not found
|
// Most likely model not found
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "openai":
|
case "openai":
|
||||||
if (errorType === "model_not_found") {
|
if (errorPayload.error?.code === "model_not_found") {
|
||||||
const requestedModel = req.body.model;
|
const requestedModel = req.body.model;
|
||||||
const modelFamily = getOpenAIModelFamily(requestedModel);
|
const modelFamily = getOpenAIModelFamily(requestedModel);
|
||||||
errorPayload.proxy_note = `The key assigned to your prompt does not support the requested model (${requestedModel}, family: ${modelFamily}).`;
|
errorPayload.proxy_note = `The key assigned to your prompt does not support the requested model (${requestedModel}, family: ${modelFamily}).`;
|
||||||
@@ -346,35 +382,28 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "anthropic":
|
case "anthropic":
|
||||||
|
errorPayload.proxy_note = `The requested Claude model might not exist, or the key might not be provisioned for it.`;
|
||||||
|
break;
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
|
errorPayload.proxy_note = `The requested Google AI model might not exist, or the key might not be provisioned for it.`;
|
||||||
|
break;
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
|
errorPayload.proxy_note = `The requested Mistral AI model might not exist, or the key might not be provisioned for it.`;
|
||||||
|
break;
|
||||||
case "aws":
|
case "aws":
|
||||||
case "gcp":
|
errorPayload.proxy_note = `The requested AWS resource might not exist, or the key might not have access to it.`;
|
||||||
|
break;
|
||||||
case "azure":
|
case "azure":
|
||||||
errorPayload.proxy_note = `The key assigned to your prompt does not support the requested model.`;
|
errorPayload.proxy_note = `The assigned Azure deployment does not support the requested model.`;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
assertNever(service);
|
assertNever(service);
|
||||||
}
|
}
|
||||||
} else if (statusCode === 503) {
|
|
||||||
switch (service) {
|
|
||||||
case "aws":
|
|
||||||
if (
|
|
||||||
errorType === "ServiceUnavailableException" &&
|
|
||||||
errorPayload.error?.message?.match(/too many connections/i)
|
|
||||||
) {
|
|
||||||
errorPayload.proxy_note = `The requested AWS Bedrock model is overloaded. Try again in a few minutes, or try another model.`;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
errorPayload.proxy_note = `Upstream service unavailable. Try again later.`;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
errorPayload.proxy_note = `Unrecognized error from upstream service.`;
|
errorPayload.proxy_note = `Unrecognized error from upstream service.`;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redact the OpenAI org id from the error message
|
// Some OAI errors contain the organization ID, which we don't want to reveal.
|
||||||
if (errorPayload.error?.message) {
|
if (errorPayload.error?.message) {
|
||||||
errorPayload.error.message = errorPayload.error.message.replace(
|
errorPayload.error.message = errorPayload.error.message.replace(
|
||||||
/org-.{24}/gm,
|
/org-.{24}/gm,
|
||||||
@@ -382,14 +411,13 @@ const handleUpstreamErrors: ProxyResHandlerWithBody = async (
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Send the error to the client
|
|
||||||
sendProxyError(req, res, statusCode, statusMessage, errorPayload);
|
sendProxyError(req, res, statusCode, statusMessage, errorPayload);
|
||||||
|
// This is bubbled up to onProxyRes's handler for logging but will not trigger
|
||||||
// Re-throw the error to bubble up to onProxyRes's handler for logging
|
// a write to the response as `sendProxyError` has just done that.
|
||||||
throw new HttpError(statusCode, errorPayload.error?.message);
|
throw new HttpError(statusCode, errorPayload.error?.message);
|
||||||
};
|
};
|
||||||
|
|
||||||
async function handleAnthropicAwsBadRequestError(
|
async function handleAnthropicBadRequestError(
|
||||||
req: Request,
|
req: Request,
|
||||||
errorPayload: ProxiedErrorPayload
|
errorPayload: ProxiedErrorPayload
|
||||||
) {
|
) {
|
||||||
@@ -424,16 +452,14 @@ async function handleAnthropicAwsBadRequestError(
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const isDisabled =
|
const isDisabled = error?.message?.match(/organization has been disabled/i);
|
||||||
error?.message?.match(/organization has been disabled/i) ||
|
|
||||||
error?.message?.match(/^operation not allowed/i);
|
|
||||||
if (isDisabled) {
|
if (isDisabled) {
|
||||||
req.log.warn(
|
req.log.warn(
|
||||||
{ key: req.key?.hash, message: error?.message },
|
{ key: req.key?.hash, message: error?.message },
|
||||||
"Anthropic/AWS key has been disabled."
|
"Anthropic key has been disabled."
|
||||||
);
|
);
|
||||||
keyPool.disable(req.key!, "revoked");
|
keyPool.disable(req.key!, "revoked");
|
||||||
errorPayload.proxy_note = `Assigned key has been disabled. (${error?.message})`;
|
errorPayload.proxy_note = `Assigned key has been disabled. ${error?.message}`;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -471,21 +497,9 @@ async function handleAwsRateLimitError(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function handleGcpRateLimitError(
|
|
||||||
req: Request,
|
|
||||||
errorPayload: ProxiedErrorPayload
|
|
||||||
) {
|
|
||||||
if (errorPayload.error?.type === "RESOURCE_EXHAUSTED") {
|
|
||||||
keyPool.markRateLimited(req.key!);
|
|
||||||
await reenqueueRequest(req);
|
|
||||||
throw new RetryableError("GCP rate-limited request re-enqueued.");
|
|
||||||
} else {
|
|
||||||
errorPayload.proxy_note = `Unrecognized 429 Too Many Requests error from GCP.`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
async function handleOpenAIRateLimitError(
|
async function handleOpenAIRateLimitError(
|
||||||
req: Request,
|
req: Request,
|
||||||
|
tryAgainMessage: string,
|
||||||
errorPayload: ProxiedErrorPayload
|
errorPayload: ProxiedErrorPayload
|
||||||
): Promise<Record<string, any>> {
|
): Promise<Record<string, any>> {
|
||||||
const type = errorPayload.error?.type;
|
const type = errorPayload.error?.type;
|
||||||
@@ -494,17 +508,17 @@ async function handleOpenAIRateLimitError(
|
|||||||
case "invalid_request_error": // this is the billing_hard_limit_reached error seen in some cases
|
case "invalid_request_error": // this is the billing_hard_limit_reached error seen in some cases
|
||||||
// Billing quota exceeded (key is dead, disable it)
|
// Billing quota exceeded (key is dead, disable it)
|
||||||
keyPool.disable(req.key!, "quota");
|
keyPool.disable(req.key!, "quota");
|
||||||
errorPayload.proxy_note = `Assigned key's quota has been exceeded. Please try again.`;
|
errorPayload.proxy_note = `Assigned key's quota has been exceeded. ${tryAgainMessage}`;
|
||||||
break;
|
break;
|
||||||
case "access_terminated":
|
case "access_terminated":
|
||||||
// Account banned (key is dead, disable it)
|
// Account banned (key is dead, disable it)
|
||||||
keyPool.disable(req.key!, "revoked");
|
keyPool.disable(req.key!, "revoked");
|
||||||
errorPayload.proxy_note = `Assigned key has been banned by OpenAI for policy violations. Please try again.`;
|
errorPayload.proxy_note = `Assigned key has been banned by OpenAI for policy violations. ${tryAgainMessage}`;
|
||||||
break;
|
break;
|
||||||
case "billing_not_active":
|
case "billing_not_active":
|
||||||
// Key valid but account billing is delinquent
|
// Key valid but account billing is delinquent
|
||||||
keyPool.disable(req.key!, "quota");
|
keyPool.disable(req.key!, "quota");
|
||||||
errorPayload.proxy_note = `Assigned key has been disabled due to delinquent billing. Please try again.`;
|
errorPayload.proxy_note = `Assigned key has been disabled due to delinquent billing. ${tryAgainMessage}`;
|
||||||
break;
|
break;
|
||||||
case "requests":
|
case "requests":
|
||||||
case "tokens":
|
case "tokens":
|
||||||
@@ -518,8 +532,58 @@ async function handleOpenAIRateLimitError(
|
|||||||
// Per-minute request or token rate limit is exceeded, which we can retry
|
// Per-minute request or token rate limit is exceeded, which we can retry
|
||||||
await reenqueueRequest(req);
|
await reenqueueRequest(req);
|
||||||
throw new RetryableError("Rate-limited request re-enqueued.");
|
throw new RetryableError("Rate-limited request re-enqueued.");
|
||||||
|
// WIP/nonfunctional
|
||||||
|
// case "tokens_usage_based":
|
||||||
|
// // Weird new rate limit type that seems limited to preview models.
|
||||||
|
// // Distinct from `tokens` type. Can be per-minute or per-day.
|
||||||
|
//
|
||||||
|
// // I've seen reports of this error for 500k tokens/day and 10k tokens/min.
|
||||||
|
// // 10k tokens per minute is problematic, because this is much less than
|
||||||
|
// // GPT4-Turbo's max context size for a single prompt and is effectively a
|
||||||
|
// // cap on the max context size for just that key+model, which the app is
|
||||||
|
// // not able to deal with.
|
||||||
|
//
|
||||||
|
// // Similarly if there is a 500k tokens per day limit and 450k tokens have
|
||||||
|
// // been used today, the max context for that key becomes 50k tokens until
|
||||||
|
// // the next day and becomes progressively smaller as more tokens are used.
|
||||||
|
//
|
||||||
|
// // To work around these keys we will first retry the request a few times.
|
||||||
|
// // After that we will reject the request, and if it's a per-day limit we
|
||||||
|
// // will also disable the key.
|
||||||
|
//
|
||||||
|
// // "Rate limit reached for gpt-4-1106-preview in organization org-xxxxxxxxxxxxxxxxxxx on tokens_usage_based per day: Limit 500000, Used 460000, Requested 50000"
|
||||||
|
// // "Rate limit reached for gpt-4-1106-preview in organization org-xxxxxxxxxxxxxxxxxxx on tokens_usage_based per min: Limit 10000, Requested 40000"
|
||||||
|
//
|
||||||
|
// const regex =
|
||||||
|
// /Rate limit reached for .+ in organization .+ on \w+ per (day|min): Limit (\d+)(?:, Used (\d+))?, Requested (\d+)/;
|
||||||
|
// const [, period, limit, used, requested] =
|
||||||
|
// errorPayload.error?.message?.match(regex) || [];
|
||||||
|
//
|
||||||
|
// req.log.warn(
|
||||||
|
// { key: req.key?.hash, period, limit, used, requested },
|
||||||
|
// "Received `tokens_usage_based` rate limit error from OpenAI."
|
||||||
|
// );
|
||||||
|
//
|
||||||
|
// if (!period || !limit || !requested) {
|
||||||
|
// errorPayload.proxy_note = `Unrecognized rate limit error from OpenAI. (${errorPayload.error?.message})`;
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if (req.retryCount < 2) {
|
||||||
|
// await reenqueueRequest(req);
|
||||||
|
// throw new RetryableError("Rate-limited request re-enqueued.");
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// if (period === "min") {
|
||||||
|
// errorPayload.proxy_note = `Assigned key can't be used for prompts longer than ${limit} tokens, and no other keys are available right now. Reduce the length of your prompt or try again in a few minutes.`;
|
||||||
|
// } else {
|
||||||
|
// errorPayload.proxy_note = `Assigned key has reached its per-day request limit for this model. Try another model.`;
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// keyPool.markRateLimited(req.key!);
|
||||||
|
// break;
|
||||||
default:
|
default:
|
||||||
errorPayload.proxy_note = `This is likely a temporary error with the API. Try again in a few seconds.`;
|
errorPayload.proxy_note = `This is likely a temporary error with OpenAI. Try again in a few seconds.`;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
return errorPayload;
|
return errorPayload;
|
||||||
@@ -541,98 +605,17 @@ async function handleAzureRateLimitError(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//{"error":{"code":400,"message":"API Key not found. Please pass a valid API key.","status":"INVALID_ARGUMENT","details":[{"@type":"type.googleapis.com/google.rpc.ErrorInfo","reason":"API_KEY_INVALID","domain":"googleapis.com","metadata":{"service":"generativelanguage.googleapis.com"}}]}}
|
|
||||||
//{"error":{"code":400,"message":"Gemini API free tier is not available in your country. Please enable billing on your project in Google AI Studio.","status":"FAILED_PRECONDITION"}}
|
|
||||||
async function handleGoogleAIBadRequestError(
|
|
||||||
req: Request,
|
|
||||||
errorPayload: ProxiedErrorPayload
|
|
||||||
) {
|
|
||||||
const error = errorPayload.error || {};
|
|
||||||
// google changes this shit every few months
|
|
||||||
// i don't want to deal with it
|
|
||||||
const keyDeadMsgs = [
|
|
||||||
/please enable billing/i,
|
|
||||||
/API key not valid/i,
|
|
||||||
/API key expired/i,
|
|
||||||
/pass a valid API/i,
|
|
||||||
];
|
|
||||||
const text = JSON.stringify(error);
|
|
||||||
if (keyDeadMsgs.some((msg) => text.match(msg))) {
|
|
||||||
req.log.warn(
|
|
||||||
{ key: req.key?.hash, error: text },
|
|
||||||
"Google API key appears to be inoperative."
|
|
||||||
);
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
|
||||||
errorPayload.proxy_note = `Assigned API key cannot be used.`;
|
|
||||||
} else {
|
|
||||||
req.log.warn(
|
|
||||||
{ key: req.key?.hash, error: text },
|
|
||||||
"Unknown Google API error."
|
|
||||||
);
|
|
||||||
errorPayload.proxy_note = `Unrecognized error from Google AI.`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// const { message, status, details } = error;
|
|
||||||
//
|
|
||||||
// if (status === "INVALID_ARGUMENT") {
|
|
||||||
// const reason = details?.[0]?.reason;
|
|
||||||
// if (reason === "API_KEY_INVALID") {
|
|
||||||
// req.log.warn(
|
|
||||||
// { key: req.key?.hash, status, reason, msg: error.message },
|
|
||||||
// "Received `API_KEY_INVALID` error from Google AI. Check the configured API key."
|
|
||||||
// );
|
|
||||||
// keyPool.disable(req.key!, "revoked");
|
|
||||||
// errorPayload.proxy_note = `Assigned API key is invalid.`;
|
|
||||||
// }
|
|
||||||
// } else if (status === "FAILED_PRECONDITION") {
|
|
||||||
// if (message.match(/please enable billing/i)) {
|
|
||||||
// req.log.warn(
|
|
||||||
// { key: req.key?.hash, status, msg: error.message },
|
|
||||||
// "Cannot use key due to billing restrictions."
|
|
||||||
// );
|
|
||||||
// keyPool.disable(req.key!, "revoked");
|
|
||||||
// errorPayload.proxy_note = `Assigned API key cannot be used.`;
|
|
||||||
// }
|
|
||||||
// } else {
|
|
||||||
// req.log.warn(
|
|
||||||
// { key: req.key?.hash, status, msg: error.message },
|
|
||||||
// "Received unexpected 400 error from Google AI."
|
|
||||||
// );
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
//{"error":{"code":429,"message":"Resource has been exhausted (e.g. check quota).","status":"RESOURCE_EXHAUSTED"}
|
//{"error":{"code":429,"message":"Resource has been exhausted (e.g. check quota).","status":"RESOURCE_EXHAUSTED"}
|
||||||
//
|
|
||||||
async function handleGoogleAIRateLimitError(
|
async function handleGoogleAIRateLimitError(
|
||||||
req: Request,
|
req: Request,
|
||||||
errorPayload: ProxiedErrorPayload
|
errorPayload: ProxiedErrorPayload
|
||||||
) {
|
) {
|
||||||
const status = errorPayload.error?.status;
|
const status = errorPayload.error?.status;
|
||||||
const text = JSON.stringify(errorPayload.error);
|
|
||||||
|
|
||||||
// sometimes they block keys by rate limiting them to 0 requests per minute
|
|
||||||
// for some indefinite period of time
|
|
||||||
const keyDeadMsgs = [
|
|
||||||
/GenerateContentRequestsPerMinutePerProjectPerRegion/i,
|
|
||||||
/"quota_limit_value":"0"/i,
|
|
||||||
];
|
|
||||||
|
|
||||||
switch (status) {
|
switch (status) {
|
||||||
case "RESOURCE_EXHAUSTED": {
|
case "RESOURCE_EXHAUSTED":
|
||||||
if (keyDeadMsgs.every((msg) => text.match(msg))) {
|
|
||||||
req.log.warn(
|
|
||||||
{ key: req.key?.hash, error: text },
|
|
||||||
"Google API key appears to be temporarily inoperative and will be disabled."
|
|
||||||
);
|
|
||||||
keyPool.disable(req.key!, "revoked");
|
|
||||||
errorPayload.proxy_note = `Assigned API key cannot be used.`;
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
keyPool.markRateLimited(req.key!);
|
keyPool.markRateLimited(req.key!);
|
||||||
await reenqueueRequest(req);
|
await reenqueueRequest(req);
|
||||||
throw new RetryableError("Rate-limited request re-enqueued.");
|
throw new RetryableError("Rate-limited request re-enqueued.");
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
errorPayload.proxy_note = `Unrecognized rate limit error from Google AI (${status}). Please report this.`;
|
errorPayload.proxy_note = `Unrecognized rate limit error from Google AI (${status}). Please report this.`;
|
||||||
break;
|
break;
|
||||||
@@ -682,23 +665,15 @@ const countResponseTokens: ProxyResHandlerWithBody = async (
|
|||||||
const completion = getCompletionFromBody(req, body);
|
const completion = getCompletionFromBody(req, body);
|
||||||
const tokens = await countTokens({ req, completion, service });
|
const tokens = await countTokens({ req, completion, service });
|
||||||
|
|
||||||
if (req.service === "openai" || req.service === "azure") {
|
|
||||||
// O1 consumes (a significant amount of) invisible tokens for the chain-
|
|
||||||
// of-thought reasoning. We have no way to count these other than to check
|
|
||||||
// the response body.
|
|
||||||
tokens.reasoning_tokens =
|
|
||||||
body.usage?.completion_tokens_details?.reasoning_tokens;
|
|
||||||
}
|
|
||||||
|
|
||||||
req.log.debug(
|
req.log.debug(
|
||||||
{ service, prevOutputTokens: req.outputTokens, tokens },
|
{ service, tokens, prevOutputTokens: req.outputTokens },
|
||||||
`Counted tokens for completion`
|
`Counted tokens for completion`
|
||||||
);
|
);
|
||||||
if (req.tokenizerInfo) {
|
if (req.tokenizerInfo) {
|
||||||
req.tokenizerInfo.completion_tokens = tokens;
|
req.tokenizerInfo.completion_tokens = tokens;
|
||||||
}
|
}
|
||||||
|
|
||||||
req.outputTokens = tokens.token_count + (tokens.reasoning_tokens ?? 0);
|
req.outputTokens = tokens.token_count;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
req.log.warn(
|
req.log.warn(
|
||||||
error,
|
error,
|
||||||
@@ -709,29 +684,26 @@ const countResponseTokens: ProxyResHandlerWithBody = async (
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const trackKeyRateLimit: ProxyResHandlerWithBody = async (proxyRes, req) => {
|
const trackRateLimit: ProxyResHandlerWithBody = async (proxyRes, req) => {
|
||||||
keyPool.updateRateLimits(req.key!, proxyRes.headers);
|
keyPool.updateRateLimits(req.key!, proxyRes.headers);
|
||||||
};
|
};
|
||||||
|
|
||||||
const omittedHeaders = new Set<string>([
|
|
||||||
// Omit content-encoding because we will always decode the response body
|
|
||||||
"content-encoding",
|
|
||||||
// Omit transfer-encoding because we are using response.json which will
|
|
||||||
// set a content-length header, which is not valid for chunked responses.
|
|
||||||
"transfer-encoding",
|
|
||||||
// Don't set cookies from upstream APIs because proxied requests are stateless
|
|
||||||
"set-cookie",
|
|
||||||
"openai-organization",
|
|
||||||
"x-request-id",
|
|
||||||
"cf-ray",
|
|
||||||
]);
|
|
||||||
const copyHttpHeaders: ProxyResHandlerWithBody = async (
|
const copyHttpHeaders: ProxyResHandlerWithBody = async (
|
||||||
proxyRes,
|
proxyRes,
|
||||||
_req,
|
_req,
|
||||||
res
|
res
|
||||||
) => {
|
) => {
|
||||||
Object.keys(proxyRes.headers).forEach((key) => {
|
Object.keys(proxyRes.headers).forEach((key) => {
|
||||||
if (omittedHeaders.has(key)) return;
|
// Omit content-encoding because we will always decode the response body
|
||||||
|
if (key === "content-encoding") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// We're usually using res.json() to send the response, which causes express
|
||||||
|
// to set content-length. That's not valid for chunked responses and some
|
||||||
|
// clients will reject it so we need to omit it.
|
||||||
|
if (key === "transfer-encoding") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
res.setHeader(key, proxyRes.headers[key] as string);
|
res.setHeader(key, proxyRes.headers[key] as string);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@@ -742,7 +714,7 @@ const copyHttpHeaders: ProxyResHandlerWithBody = async (
|
|||||||
* or transformed.
|
* or transformed.
|
||||||
* Only used for non-streaming requests.
|
* Only used for non-streaming requests.
|
||||||
*/
|
*/
|
||||||
const injectProxyInfo: ProxyResHandlerWithBody = async (
|
const addProxyInfo: ProxyResHandlerWithBody = async (
|
||||||
_proxyRes,
|
_proxyRes,
|
||||||
req,
|
req,
|
||||||
res,
|
res,
|
||||||
@@ -775,6 +747,6 @@ function getAwsErrorType(header: string | string[] | undefined) {
|
|||||||
|
|
||||||
function assertJsonResponse(body: any): asserts body is Record<string, any> {
|
function assertJsonResponse(body: any): asserts body is Record<string, any> {
|
||||||
if (typeof body !== "object") {
|
if (typeof body !== "object") {
|
||||||
throw new Error(`Expected response to be an object, got ${typeof body}`);
|
throw new Error("Expected response to be an object");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,81 +0,0 @@
|
|||||||
import { createHash } from "crypto";
|
|
||||||
import { config } from "../../../config";
|
|
||||||
import { eventLogger } from "../../../shared/prompt-logging";
|
|
||||||
import { getModelFromBody, isTextGenerationRequest } from "../common";
|
|
||||||
import { ProxyResHandlerWithBody } from ".";
|
|
||||||
import {
|
|
||||||
OpenAIChatMessage,
|
|
||||||
AnthropicChatMessage,
|
|
||||||
} from "../../../shared/api-schemas";
|
|
||||||
|
|
||||||
/** If event logging is enabled, logs a chat completion event. */
|
|
||||||
export const logEvent: ProxyResHandlerWithBody = async (
|
|
||||||
_proxyRes,
|
|
||||||
req,
|
|
||||||
_res,
|
|
||||||
responseBody
|
|
||||||
) => {
|
|
||||||
if (!config.eventLogging) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (typeof responseBody !== "object") {
|
|
||||||
throw new Error("Expected body to be an object");
|
|
||||||
}
|
|
||||||
if (!["openai", "anthropic-chat"].includes(req.outboundApi)) {
|
|
||||||
// only chat apis are supported
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!req.user) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const loggable = isTextGenerationRequest(req);
|
|
||||||
if (!loggable) return;
|
|
||||||
|
|
||||||
const messages = req.body.messages as
|
|
||||||
| OpenAIChatMessage[]
|
|
||||||
| AnthropicChatMessage[];
|
|
||||||
|
|
||||||
let hashes = [];
|
|
||||||
hashes.push(hashMessages(messages));
|
|
||||||
for (
|
|
||||||
let i = 1;
|
|
||||||
i <= Math.min(config.eventLoggingTrim!, messages.length);
|
|
||||||
i++
|
|
||||||
) {
|
|
||||||
hashes.push(hashMessages(messages.slice(0, -i)));
|
|
||||||
}
|
|
||||||
|
|
||||||
const model = getModelFromBody(req, responseBody);
|
|
||||||
const userToken = req.user!.token;
|
|
||||||
const family = req.modelFamily!;
|
|
||||||
eventLogger.logEvent({
|
|
||||||
ip: req.ip,
|
|
||||||
type: "chat_completion",
|
|
||||||
model,
|
|
||||||
family,
|
|
||||||
hashes,
|
|
||||||
userToken,
|
|
||||||
inputTokens: req.promptTokens ?? 0,
|
|
||||||
outputTokens: req.outputTokens ?? 0,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const hashMessages = (
|
|
||||||
messages: OpenAIChatMessage[] | AnthropicChatMessage[]
|
|
||||||
): string => {
|
|
||||||
let hasher = createHash("sha256");
|
|
||||||
let messageTexts = [];
|
|
||||||
for (const msg of messages) {
|
|
||||||
if (!["system", "user", "assistant"].includes(msg.role)) continue;
|
|
||||||
if (typeof msg.content === "string") {
|
|
||||||
messageTexts.push(msg.content);
|
|
||||||
} else if (Array.isArray(msg.content)) {
|
|
||||||
if (msg.content[0].type === "text") {
|
|
||||||
messageTexts.push(msg.content[0].text);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
hasher.update(messageTexts.join("<|im_sep|>"));
|
|
||||||
return hasher.digest("hex");
|
|
||||||
};
|
|
||||||
@@ -12,10 +12,10 @@ import { assertNever } from "../../../shared/utils";
|
|||||||
import {
|
import {
|
||||||
AnthropicChatMessage,
|
AnthropicChatMessage,
|
||||||
flattenAnthropicMessages,
|
flattenAnthropicMessages,
|
||||||
GoogleAIChatMessage,
|
|
||||||
MistralAIChatMessage,
|
MistralAIChatMessage,
|
||||||
OpenAIChatMessage,
|
OpenAIChatMessage,
|
||||||
} from "../../../shared/api-schemas";
|
} from "../../../shared/api-support";
|
||||||
|
import { APIFormat } from "../../../shared/key-management";
|
||||||
|
|
||||||
/** If prompt logging is enabled, enqueues the prompt for logging. */
|
/** If prompt logging is enabled, enqueues the prompt for logging. */
|
||||||
export const logPrompt: ProxyResHandlerWithBody = async (
|
export const logPrompt: ProxyResHandlerWithBody = async (
|
||||||
@@ -36,7 +36,7 @@ export const logPrompt: ProxyResHandlerWithBody = async (
|
|||||||
if (!loggable) return;
|
if (!loggable) return;
|
||||||
|
|
||||||
const promptPayload = getPromptForRequest(req, responseBody);
|
const promptPayload = getPromptForRequest(req, responseBody);
|
||||||
const promptFlattened = flattenMessages(promptPayload);
|
const promptFlattened = flattenMessages(promptPayload, req.outboundApi);
|
||||||
const response = getCompletionFromBody(req, responseBody);
|
const response = getCompletionFromBody(req, responseBody);
|
||||||
const model = getModelFromBody(req, responseBody);
|
const model = getModelFromBody(req, responseBody);
|
||||||
|
|
||||||
@@ -63,8 +63,7 @@ const getPromptForRequest = (
|
|||||||
):
|
):
|
||||||
| string
|
| string
|
||||||
| OpenAIChatMessage[]
|
| OpenAIChatMessage[]
|
||||||
| { contents: GoogleAIChatMessage[] }
|
| AnthropicChatMessage[]
|
||||||
| { system: string; messages: AnthropicChatMessage[] }
|
|
||||||
| MistralAIChatMessage[]
|
| MistralAIChatMessage[]
|
||||||
| OaiImageResult => {
|
| OaiImageResult => {
|
||||||
// Since the prompt logger only runs after the request has been proxied, we
|
// Since the prompt logger only runs after the request has been proxied, we
|
||||||
@@ -73,18 +72,9 @@ const getPromptForRequest = (
|
|||||||
switch (req.outboundApi) {
|
switch (req.outboundApi) {
|
||||||
case "openai":
|
case "openai":
|
||||||
case "mistral-ai":
|
case "mistral-ai":
|
||||||
return req.body.messages;
|
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
let system = req.body.system;
|
return req.body.messages;
|
||||||
if (Array.isArray(system)) {
|
|
||||||
system = system
|
|
||||||
.map((m: { type: string; text: string }) => m.text)
|
|
||||||
.join("\n");
|
|
||||||
}
|
|
||||||
return { system, messages: req.body.messages };
|
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
case "anthropic-text":
|
|
||||||
case "mistral-text":
|
|
||||||
return req.body.prompt;
|
return req.body.prompt;
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
return {
|
return {
|
||||||
@@ -94,8 +84,10 @@ const getPromptForRequest = (
|
|||||||
quality: req.body.quality,
|
quality: req.body.quality,
|
||||||
revisedPrompt: responseBody.data[0].revised_prompt,
|
revisedPrompt: responseBody.data[0].revised_prompt,
|
||||||
};
|
};
|
||||||
|
case "anthropic-text":
|
||||||
|
return req.body.prompt;
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
return { contents: req.body.contents };
|
return req.body.prompt.text;
|
||||||
default:
|
default:
|
||||||
assertNever(req.outboundApi);
|
assertNever(req.outboundApi);
|
||||||
}
|
}
|
||||||
@@ -106,24 +98,15 @@ const flattenMessages = (
|
|||||||
| string
|
| string
|
||||||
| OaiImageResult
|
| OaiImageResult
|
||||||
| OpenAIChatMessage[]
|
| OpenAIChatMessage[]
|
||||||
| { contents: GoogleAIChatMessage[] }
|
| AnthropicChatMessage[]
|
||||||
| { system: string; messages: AnthropicChatMessage[] }
|
| MistralAIChatMessage[],
|
||||||
| MistralAIChatMessage[]
|
format: APIFormat
|
||||||
): string => {
|
): string => {
|
||||||
if (typeof val === "string") {
|
if (typeof val === "string") {
|
||||||
return val.trim();
|
return val.trim();
|
||||||
}
|
}
|
||||||
if (isAnthropicChatPrompt(val)) {
|
if (format === "anthropic-chat") {
|
||||||
const { system, messages } = val;
|
return flattenAnthropicMessages(val as AnthropicChatMessage[]);
|
||||||
return `System: ${system}\n\n${flattenAnthropicMessages(messages)}`;
|
|
||||||
}
|
|
||||||
if (isGoogleAIChatPrompt(val)) {
|
|
||||||
return val.contents
|
|
||||||
.map(({ parts, role }) => {
|
|
||||||
const text = parts.map((p) => p.text).join("\n");
|
|
||||||
return `${role}: ${text}`;
|
|
||||||
})
|
|
||||||
.join("\n");
|
|
||||||
}
|
}
|
||||||
if (Array.isArray(val)) {
|
if (Array.isArray(val)) {
|
||||||
return val
|
return val
|
||||||
@@ -144,20 +127,3 @@ const flattenMessages = (
|
|||||||
}
|
}
|
||||||
return val.prompt.trim();
|
return val.prompt.trim();
|
||||||
};
|
};
|
||||||
|
|
||||||
function isGoogleAIChatPrompt(
|
|
||||||
val: unknown
|
|
||||||
): val is { contents: GoogleAIChatMessage[] } {
|
|
||||||
return typeof val === "object" && val !== null && "contents" in val;
|
|
||||||
}
|
|
||||||
|
|
||||||
function isAnthropicChatPrompt(
|
|
||||||
val: unknown
|
|
||||||
): val is { system: string; messages: AnthropicChatMessage[] } {
|
|
||||||
return (
|
|
||||||
typeof val === "object" &&
|
|
||||||
val !== null &&
|
|
||||||
"system" in val &&
|
|
||||||
"messages" in val
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,39 +0,0 @@
|
|||||||
import { OpenAIChatCompletionStreamEvent } from "../index";
|
|
||||||
|
|
||||||
export type MistralChatCompletionResponse = {
|
|
||||||
choices: {
|
|
||||||
index: number;
|
|
||||||
message: { role: string; content: string };
|
|
||||||
finish_reason: string | null;
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Given a list of OpenAI chat completion events, compiles them into a single
|
|
||||||
* finalized Mistral chat completion response so that non-streaming middleware
|
|
||||||
* can operate on it as if it were a blocking response.
|
|
||||||
*/
|
|
||||||
export function mergeEventsForMistralChat(
|
|
||||||
events: OpenAIChatCompletionStreamEvent[]
|
|
||||||
): MistralChatCompletionResponse {
|
|
||||||
let merged: MistralChatCompletionResponse = {
|
|
||||||
choices: [
|
|
||||||
{ index: 0, message: { role: "", content: "" }, finish_reason: "" },
|
|
||||||
],
|
|
||||||
};
|
|
||||||
merged = events.reduce((acc, event, i) => {
|
|
||||||
// The first event will only contain role assignment and response metadata
|
|
||||||
if (i === 0) {
|
|
||||||
acc.choices[0].message.role = event.choices[0].delta.role ?? "assistant";
|
|
||||||
return acc;
|
|
||||||
}
|
|
||||||
|
|
||||||
acc.choices[0].finish_reason = event.choices[0].finish_reason ?? "";
|
|
||||||
if (event.choices[0].delta.content) {
|
|
||||||
acc.choices[0].message.content += event.choices[0].delta.content;
|
|
||||||
}
|
|
||||||
|
|
||||||
return acc;
|
|
||||||
}, merged);
|
|
||||||
return merged;
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import { OpenAIChatCompletionStreamEvent } from "../index";
|
|
||||||
|
|
||||||
export type MistralTextCompletionResponse = {
|
|
||||||
outputs: {
|
|
||||||
text: string;
|
|
||||||
stop_reason: string | null;
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Given a list of OpenAI chat completion events, compiles them into a single
|
|
||||||
* finalized Mistral text completion response so that non-streaming middleware
|
|
||||||
* can operate on it as if it were a blocking response.
|
|
||||||
*/
|
|
||||||
export function mergeEventsForMistralText(
|
|
||||||
events: OpenAIChatCompletionStreamEvent[]
|
|
||||||
): MistralTextCompletionResponse {
|
|
||||||
let merged: MistralTextCompletionResponse = {
|
|
||||||
outputs: [{ text: "", stop_reason: "" }],
|
|
||||||
};
|
|
||||||
merged = events.reduce((acc, event, i) => {
|
|
||||||
// The first event will only contain role assignment and response metadata
|
|
||||||
if (i === 0) {
|
|
||||||
return acc;
|
|
||||||
}
|
|
||||||
|
|
||||||
acc.outputs[0].text += event.choices[0].delta.content ?? "";
|
|
||||||
acc.outputs[0].stop_reason = event.choices[0].finish_reason ?? "";
|
|
||||||
|
|
||||||
return acc;
|
|
||||||
}, merged);
|
|
||||||
return merged;
|
|
||||||
}
|
|
||||||
@@ -24,7 +24,7 @@ export function getAwsEventStreamDecoder(params: {
|
|||||||
if (eventType === "chunk") {
|
if (eventType === "chunk") {
|
||||||
result = input[eventType];
|
result = input[eventType];
|
||||||
} else {
|
} else {
|
||||||
// AWS unmarshaller treats non-chunk events (errors and exceptions) oddly.
|
// AWS unmarshaller treats non-chunk (errors and exceptions) oddly.
|
||||||
result = { [eventType]: input[eventType] } as any;
|
result = { [eventType]: input[eventType] } as any;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import express from "express";
|
|
||||||
import { APIFormat } from "../../../../shared/key-management";
|
import { APIFormat } from "../../../../shared/key-management";
|
||||||
import { assertNever } from "../../../../shared/utils";
|
import { assertNever } from "../../../../shared/utils";
|
||||||
import {
|
import {
|
||||||
@@ -7,13 +6,8 @@ import {
|
|||||||
mergeEventsForAnthropicText,
|
mergeEventsForAnthropicText,
|
||||||
mergeEventsForOpenAIChat,
|
mergeEventsForOpenAIChat,
|
||||||
mergeEventsForOpenAIText,
|
mergeEventsForOpenAIText,
|
||||||
mergeEventsForMistralChat,
|
|
||||||
mergeEventsForMistralText,
|
|
||||||
AnthropicV2StreamEvent,
|
AnthropicV2StreamEvent,
|
||||||
OpenAIChatCompletionStreamEvent,
|
OpenAIChatCompletionStreamEvent,
|
||||||
mistralAIToOpenAI,
|
|
||||||
MistralAIStreamEvent,
|
|
||||||
MistralChatCompletionEvent,
|
|
||||||
} from "./index";
|
} from "./index";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -21,70 +15,45 @@ import {
|
|||||||
* compiles them into a single finalized response for downstream middleware.
|
* compiles them into a single finalized response for downstream middleware.
|
||||||
*/
|
*/
|
||||||
export class EventAggregator {
|
export class EventAggregator {
|
||||||
private readonly model: string;
|
private readonly format: APIFormat;
|
||||||
private readonly requestFormat: APIFormat;
|
|
||||||
private readonly responseFormat: APIFormat;
|
|
||||||
private readonly events: OpenAIChatCompletionStreamEvent[];
|
private readonly events: OpenAIChatCompletionStreamEvent[];
|
||||||
|
|
||||||
constructor({ body, inboundApi, outboundApi }: express.Request) {
|
constructor({ format }: { format: APIFormat }) {
|
||||||
this.events = [];
|
this.events = [];
|
||||||
this.requestFormat = inboundApi;
|
this.format = format;
|
||||||
this.responseFormat = outboundApi;
|
|
||||||
this.model = body.model;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addEvent(
|
addEvent(event: OpenAIChatCompletionStreamEvent | AnthropicV2StreamEvent) {
|
||||||
event:
|
|
||||||
| OpenAIChatCompletionStreamEvent
|
|
||||||
| AnthropicV2StreamEvent
|
|
||||||
| MistralAIStreamEvent
|
|
||||||
) {
|
|
||||||
if (eventIsOpenAIEvent(event)) {
|
if (eventIsOpenAIEvent(event)) {
|
||||||
this.events.push(event);
|
this.events.push(event);
|
||||||
} else {
|
} else {
|
||||||
// horrible special case. previously all transformers' target format was
|
// horrible special case. previously all transformers' target format was
|
||||||
// openai, so the event aggregator could conveniently assume all incoming
|
// openai, so the event aggregator could conveniently assume all incoming
|
||||||
// events were in openai format.
|
// events were in openai format.
|
||||||
// now we have added some transformers that convert between non-openai
|
// now we have added anthropic-chat-to-text, so aggregator needs to know
|
||||||
// formats, so aggregator needs to know how to collapse for more than
|
// how to collapse events from two formats.
|
||||||
// just openai.
|
// because that is annoying, we will simply transform anthropic events to
|
||||||
// because writing aggregation logic for every possible output format is
|
// openai (even if the client didn't ask for openai) so we don't have to
|
||||||
// annoying, we will just transform any non-openai output events to openai
|
// write aggregation logic for anthropic chat (which is also a troublesome
|
||||||
// format (even if the client did not request openai at all) so that we
|
// stateful format).
|
||||||
// still only need to write aggregators for openai SSEs.
|
const openAIEvent = anthropicV2ToOpenAI({
|
||||||
let openAIEvent: OpenAIChatCompletionStreamEvent | undefined;
|
data: `event: completion\ndata: ${JSON.stringify(event)}\n\n`,
|
||||||
switch (this.requestFormat) {
|
lastPosition: -1,
|
||||||
case "anthropic-text":
|
index: 0,
|
||||||
assertIsAnthropicV2Event(event);
|
fallbackId: event.log_id || "event-aggregator-fallback",
|
||||||
openAIEvent = anthropicV2ToOpenAI({
|
fallbackModel: event.model || "claude-3-fallback",
|
||||||
data: `event: completion\ndata: ${JSON.stringify(event)}\n\n`,
|
});
|
||||||
lastPosition: -1,
|
if (openAIEvent.event) {
|
||||||
index: 0,
|
this.events.push(openAIEvent.event);
|
||||||
fallbackId: event.log_id || "fallback-" + Date.now(),
|
|
||||||
fallbackModel: event.model || this.model || "fallback-claude-3",
|
|
||||||
})?.event;
|
|
||||||
break;
|
|
||||||
case "mistral-ai":
|
|
||||||
assertIsMistralChatEvent(event);
|
|
||||||
openAIEvent = mistralAIToOpenAI({
|
|
||||||
data: `data: ${JSON.stringify(event)}\n\n`,
|
|
||||||
lastPosition: -1,
|
|
||||||
index: 0,
|
|
||||||
fallbackId: "fallback-" + Date.now(),
|
|
||||||
fallbackModel: this.model || "fallback-mistral",
|
|
||||||
})?.event;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
if (openAIEvent) {
|
|
||||||
this.events.push(openAIEvent);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getFinalResponse() {
|
getFinalResponse() {
|
||||||
switch (this.responseFormat) {
|
switch (this.format) {
|
||||||
case "openai":
|
case "openai":
|
||||||
case "google-ai": // TODO: this is probably wrong now that we support native Google Makersuite prompts
|
case "google-ai":
|
||||||
|
case "mistral-ai":
|
||||||
return mergeEventsForOpenAIChat(this.events);
|
return mergeEventsForOpenAIChat(this.events);
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
return mergeEventsForOpenAIText(this.events);
|
return mergeEventsForOpenAIText(this.events);
|
||||||
@@ -92,22 +61,12 @@ export class EventAggregator {
|
|||||||
return mergeEventsForAnthropicText(this.events);
|
return mergeEventsForAnthropicText(this.events);
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
return mergeEventsForAnthropicChat(this.events);
|
return mergeEventsForAnthropicChat(this.events);
|
||||||
case "mistral-ai":
|
|
||||||
return mergeEventsForMistralChat(this.events);
|
|
||||||
case "mistral-text":
|
|
||||||
return mergeEventsForMistralText(this.events);
|
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
throw new Error(
|
throw new Error(`SSE aggregation not supported for ${this.format}`);
|
||||||
`SSE aggregation not supported for ${this.responseFormat}`
|
|
||||||
);
|
|
||||||
default:
|
default:
|
||||||
assertNever(this.responseFormat);
|
assertNever(this.format);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hasEvents() {
|
|
||||||
return this.events.length > 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function eventIsOpenAIEvent(
|
function eventIsOpenAIEvent(
|
||||||
@@ -115,17 +74,3 @@ function eventIsOpenAIEvent(
|
|||||||
): event is OpenAIChatCompletionStreamEvent {
|
): event is OpenAIChatCompletionStreamEvent {
|
||||||
return event?.object === "chat.completion.chunk";
|
return event?.object === "chat.completion.chunk";
|
||||||
}
|
}
|
||||||
|
|
||||||
function assertIsAnthropicV2Event(event: any): asserts event is AnthropicV2StreamEvent {
|
|
||||||
if (!event?.completion) {
|
|
||||||
throw new Error(`Bad event for Anthropic V2 SSE aggregation`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function assertIsMistralChatEvent(
|
|
||||||
event: any
|
|
||||||
): asserts event is MistralChatCompletionEvent {
|
|
||||||
if (!event?.choices) {
|
|
||||||
throw new Error(`Bad event for Mistral SSE aggregation`);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -7,25 +7,6 @@ export type SSEResponseTransformArgs<S = Record<string, any>> = {
|
|||||||
state?: S;
|
state?: S;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type MistralChatCompletionEvent = {
|
|
||||||
choices: {
|
|
||||||
index: number;
|
|
||||||
message: { role: string; content: string };
|
|
||||||
stop_reason: string | null;
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
export type MistralTextCompletionEvent = {
|
|
||||||
outputs: { text: string; stop_reason: string | null }[];
|
|
||||||
};
|
|
||||||
export type MistralAIStreamEvent = {
|
|
||||||
"amazon-bedrock-invocationMetrics"?: {
|
|
||||||
inputTokenCount: number;
|
|
||||||
outputTokenCount: number;
|
|
||||||
invocationLatency: number;
|
|
||||||
firstByteLatency: number;
|
|
||||||
};
|
|
||||||
} & (MistralChatCompletionEvent | MistralTextCompletionEvent);
|
|
||||||
|
|
||||||
export type AnthropicV2StreamEvent = {
|
export type AnthropicV2StreamEvent = {
|
||||||
log_id?: string;
|
log_id?: string;
|
||||||
model?: string;
|
model?: string;
|
||||||
@@ -60,12 +41,8 @@ export { anthropicV2ToOpenAI } from "./transformers/anthropic-v2-to-openai";
|
|||||||
export { anthropicChatToAnthropicV2 } from "./transformers/anthropic-chat-to-anthropic-v2";
|
export { anthropicChatToAnthropicV2 } from "./transformers/anthropic-chat-to-anthropic-v2";
|
||||||
export { anthropicChatToOpenAI } from "./transformers/anthropic-chat-to-openai";
|
export { anthropicChatToOpenAI } from "./transformers/anthropic-chat-to-openai";
|
||||||
export { googleAIToOpenAI } from "./transformers/google-ai-to-openai";
|
export { googleAIToOpenAI } from "./transformers/google-ai-to-openai";
|
||||||
export { mistralAIToOpenAI } from "./transformers/mistral-ai-to-openai";
|
|
||||||
export { mistralTextToMistralChat } from "./transformers/mistral-text-to-mistral-chat";
|
|
||||||
export { passthroughToOpenAI } from "./transformers/passthrough-to-openai";
|
export { passthroughToOpenAI } from "./transformers/passthrough-to-openai";
|
||||||
export { mergeEventsForOpenAIChat } from "./aggregators/openai-chat";
|
export { mergeEventsForOpenAIChat } from "./aggregators/openai-chat";
|
||||||
export { mergeEventsForOpenAIText } from "./aggregators/openai-text";
|
export { mergeEventsForOpenAIText } from "./aggregators/openai-text";
|
||||||
export { mergeEventsForAnthropicText } from "./aggregators/anthropic-text";
|
export { mergeEventsForAnthropicText } from "./aggregators/anthropic-text";
|
||||||
export { mergeEventsForAnthropicChat } from "./aggregators/anthropic-chat";
|
export { mergeEventsForAnthropicChat } from "./aggregators/anthropic-chat";
|
||||||
export { mergeEventsForMistralChat } from "./aggregators/mistral-chat";
|
|
||||||
export { mergeEventsForMistralText } from "./aggregators/mistral-text";
|
|
||||||
|
|||||||
@@ -11,11 +11,8 @@ import {
|
|||||||
googleAIToOpenAI,
|
googleAIToOpenAI,
|
||||||
OpenAIChatCompletionStreamEvent,
|
OpenAIChatCompletionStreamEvent,
|
||||||
openAITextToOpenAIChat,
|
openAITextToOpenAIChat,
|
||||||
mistralAIToOpenAI,
|
|
||||||
mistralTextToMistralChat,
|
|
||||||
passthroughToOpenAI,
|
passthroughToOpenAI,
|
||||||
StreamingCompletionTransformer,
|
StreamingCompletionTransformer,
|
||||||
MistralChatCompletionEvent,
|
|
||||||
} from "./index";
|
} from "./index";
|
||||||
|
|
||||||
type SSEMessageTransformerOptions = TransformOptions & {
|
type SSEMessageTransformerOptions = TransformOptions & {
|
||||||
@@ -38,9 +35,7 @@ export class SSEMessageTransformer extends Transform {
|
|||||||
private readonly inputFormat: APIFormat;
|
private readonly inputFormat: APIFormat;
|
||||||
private readonly transformFn: StreamingCompletionTransformer<
|
private readonly transformFn: StreamingCompletionTransformer<
|
||||||
// TODO: Refactor transformers to not assume only OpenAI events as output
|
// TODO: Refactor transformers to not assume only OpenAI events as output
|
||||||
| OpenAIChatCompletionStreamEvent
|
OpenAIChatCompletionStreamEvent | AnthropicV2StreamEvent
|
||||||
| AnthropicV2StreamEvent
|
|
||||||
| MistralChatCompletionEvent
|
|
||||||
>;
|
>;
|
||||||
private readonly log;
|
private readonly log;
|
||||||
private readonly fallbackId: string;
|
private readonly fallbackId: string;
|
||||||
@@ -126,17 +121,16 @@ function eventIsOpenAIEvent(
|
|||||||
function getTransformer(
|
function getTransformer(
|
||||||
responseApi: APIFormat,
|
responseApi: APIFormat,
|
||||||
version?: string,
|
version?: string,
|
||||||
// In most cases, we are transforming back to OpenAI. Some responses can be
|
// There's only one case where we're not transforming back to OpenAI, which is
|
||||||
// translated between two non-OpenAI formats, eg Anthropic Chat -> Anthropic
|
// Anthropic Chat response -> Anthropic Text request. This parameter is only
|
||||||
// Text, or Mistral Text -> Mistral Chat.
|
// used for that case.
|
||||||
requestApi: APIFormat = "openai"
|
requestApi: APIFormat = "openai"
|
||||||
): StreamingCompletionTransformer<
|
): StreamingCompletionTransformer<
|
||||||
| OpenAIChatCompletionStreamEvent
|
OpenAIChatCompletionStreamEvent | AnthropicV2StreamEvent
|
||||||
| AnthropicV2StreamEvent
|
|
||||||
| MistralChatCompletionEvent
|
|
||||||
> {
|
> {
|
||||||
switch (responseApi) {
|
switch (responseApi) {
|
||||||
case "openai":
|
case "openai":
|
||||||
|
case "mistral-ai":
|
||||||
return passthroughToOpenAI;
|
return passthroughToOpenAI;
|
||||||
case "openai-text":
|
case "openai-text":
|
||||||
return openAITextToOpenAIChat;
|
return openAITextToOpenAIChat;
|
||||||
@@ -146,16 +140,10 @@ function getTransformer(
|
|||||||
: anthropicV2ToOpenAI;
|
: anthropicV2ToOpenAI;
|
||||||
case "anthropic-chat":
|
case "anthropic-chat":
|
||||||
return requestApi === "anthropic-text"
|
return requestApi === "anthropic-text"
|
||||||
? anthropicChatToAnthropicV2 // User's legacy text prompt was converted to chat, and response must be converted back to text
|
? anthropicChatToAnthropicV2
|
||||||
: anthropicChatToOpenAI;
|
: anthropicChatToOpenAI;
|
||||||
case "google-ai":
|
case "google-ai":
|
||||||
return googleAIToOpenAI;
|
return googleAIToOpenAI;
|
||||||
case "mistral-ai":
|
|
||||||
return mistralAIToOpenAI;
|
|
||||||
case "mistral-text":
|
|
||||||
return requestApi === "mistral-ai"
|
|
||||||
? mistralTextToMistralChat // User's chat request was converted to text, and response must be converted back to chat
|
|
||||||
: mistralAIToOpenAI;
|
|
||||||
case "openai-image":
|
case "openai-image":
|
||||||
throw new Error(`SSE transformation not supported for ${responseApi}`);
|
throw new Error(`SSE transformation not supported for ${responseApi}`);
|
||||||
default:
|
default:
|
||||||
|
|||||||
@@ -2,7 +2,9 @@ import pino from "pino";
|
|||||||
import { Transform, TransformOptions } from "stream";
|
import { Transform, TransformOptions } from "stream";
|
||||||
import { Message } from "@smithy/eventstream-codec";
|
import { Message } from "@smithy/eventstream-codec";
|
||||||
import { APIFormat } from "../../../../shared/key-management";
|
import { APIFormat } from "../../../../shared/key-management";
|
||||||
import { BadRequestError, RetryableError } from "../../../../shared/errors";
|
import { RetryableError } from "../index";
|
||||||
|
import { buildSpoofedSSE } from "../error-generator";
|
||||||
|
import { BadRequestError } from "../../../../shared/errors";
|
||||||
|
|
||||||
type SSEStreamAdapterOptions = TransformOptions & {
|
type SSEStreamAdapterOptions = TransformOptions & {
|
||||||
contentType?: string;
|
contentType?: string;
|
||||||
@@ -19,6 +21,7 @@ type SSEStreamAdapterOptions = TransformOptions & {
|
|||||||
*/
|
*/
|
||||||
export class SSEStreamAdapter extends Transform {
|
export class SSEStreamAdapter extends Transform {
|
||||||
private readonly isAwsStream;
|
private readonly isAwsStream;
|
||||||
|
private readonly isGoogleStream;
|
||||||
private api: APIFormat;
|
private api: APIFormat;
|
||||||
private partialMessage = "";
|
private partialMessage = "";
|
||||||
private textDecoder = new TextDecoder("utf8");
|
private textDecoder = new TextDecoder("utf8");
|
||||||
@@ -28,6 +31,7 @@ export class SSEStreamAdapter extends Transform {
|
|||||||
super({ ...options, objectMode: true });
|
super({ ...options, objectMode: true });
|
||||||
this.isAwsStream =
|
this.isAwsStream =
|
||||||
options?.contentType === "application/vnd.amazon.eventstream";
|
options?.contentType === "application/vnd.amazon.eventstream";
|
||||||
|
this.isGoogleStream = options?.api === "google-ai";
|
||||||
this.api = options.api;
|
this.api = options.api;
|
||||||
this.log = options.logger.child({ module: "sse-stream-adapter" });
|
this.log = options.logger.child({ module: "sse-stream-adapter" });
|
||||||
}
|
}
|
||||||
@@ -52,10 +56,8 @@ export class SSEStreamAdapter extends Transform {
|
|||||||
|
|
||||||
if ("completion" in eventObj) {
|
if ("completion" in eventObj) {
|
||||||
return ["event: completion", `data: ${event}`].join(`\n`);
|
return ["event: completion", `data: ${event}`].join(`\n`);
|
||||||
} else if (eventObj.type) {
|
|
||||||
return [`event: ${eventObj.type}`, `data: ${event}`].join(`\n`);
|
|
||||||
} else {
|
} else {
|
||||||
return `data: ${event}`;
|
return [`event: ${eventObj.type}`, `data: ${event}`].join(`\n`);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// noinspection FallThroughInSwitchStatementJS -- non-JSON data is unexpected
|
// noinspection FallThroughInSwitchStatementJS -- non-JSON data is unexpected
|
||||||
@@ -107,12 +109,44 @@ export class SSEStreamAdapter extends Transform {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Processes an incoming array element from the Google AI JSON stream. */
|
||||||
|
protected processGoogleObject(data: any): string | null {
|
||||||
|
// Sometimes data has fields key and value, sometimes it's just the
|
||||||
|
// candidates array.
|
||||||
|
const candidates = data.value?.candidates ?? data.candidates ?? [{}];
|
||||||
|
try {
|
||||||
|
const hasParts = candidates[0].content?.parts?.length > 0;
|
||||||
|
if (hasParts) {
|
||||||
|
return `data: ${JSON.stringify(data)}`;
|
||||||
|
} else {
|
||||||
|
this.log.error({ event: data }, "Received bad Google AI event");
|
||||||
|
return `data: ${buildSpoofedSSE({
|
||||||
|
format: "google-ai",
|
||||||
|
title: "Proxy stream error",
|
||||||
|
message:
|
||||||
|
"The proxy received malformed or unexpected data from Google AI while streaming.",
|
||||||
|
obj: data,
|
||||||
|
reqId: "proxy-sse-adapter-message",
|
||||||
|
model: "",
|
||||||
|
})}`;
|
||||||
|
}
|
||||||
|
} catch (error) {
|
||||||
|
error.lastEvent = data;
|
||||||
|
this.emit("error", error);
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
_transform(data: any, _enc: string, callback: (err?: Error | null) => void) {
|
_transform(data: any, _enc: string, callback: (err?: Error | null) => void) {
|
||||||
try {
|
try {
|
||||||
if (this.isAwsStream) {
|
if (this.isAwsStream) {
|
||||||
// `data` is a Message object
|
// `data` is a Message object
|
||||||
const message = this.processAwsMessage(data);
|
const message = this.processAwsMessage(data);
|
||||||
if (message) this.push(message + "\n\n");
|
if (message) this.push(message + "\n\n");
|
||||||
|
} else if (this.isGoogleStream) {
|
||||||
|
// `data` is an element from the Google AI JSON stream
|
||||||
|
const message = this.processGoogleObject(data);
|
||||||
|
if (message) this.push(message + "\n\n");
|
||||||
} else {
|
} else {
|
||||||
// `data` is a string, but possibly only a partial message
|
// `data` is a string, but possibly only a partial message
|
||||||
const fullMessages = (this.partialMessage + data).split(
|
const fullMessages = (this.partialMessage + data).split(
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ export const anthropicChatToOpenAI: StreamingCompletionTransformer = (
|
|||||||
model: params.fallbackModel,
|
model: params.fallbackModel,
|
||||||
choices: [
|
choices: [
|
||||||
{
|
{
|
||||||
index: 0,
|
index: params.index,
|
||||||
delta: { content: deltaEvent.delta.text },
|
delta: { content: deltaEvent.delta.text },
|
||||||
finish_reason: null,
|
finish_reason: null,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ const log = logger.child({
|
|||||||
|
|
||||||
type GoogleAIStreamEvent = {
|
type GoogleAIStreamEvent = {
|
||||||
candidates: {
|
candidates: {
|
||||||
content?: { parts?: { text: string }[]; role: string };
|
content: { parts: { text: string }[]; role: string };
|
||||||
finishReason?: "STOP" | "MAX_TOKENS" | "SAFETY" | "RECITATION" | "OTHER";
|
finishReason?: "STOP" | "MAX_TOKENS" | "SAFETY" | "RECITATION" | "OTHER";
|
||||||
index: number;
|
index: number;
|
||||||
tokenCount?: number;
|
tokenCount?: number;
|
||||||
@@ -34,15 +34,9 @@ export const googleAIToOpenAI: StreamingCompletionTransformer = (params) => {
|
|||||||
return { position: -1 };
|
return { position: -1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
const parts = completionEvent.candidates[0].content?.parts || [];
|
const parts = completionEvent.candidates[0].content.parts;
|
||||||
let content = parts[0]?.text ?? "";
|
let content = parts[0]?.text ?? "";
|
||||||
|
|
||||||
if (isSafetyStop(completionEvent)) {
|
|
||||||
content = `[Proxy Warning] Gemini safety filter triggered: ${JSON.stringify(
|
|
||||||
completionEvent.candidates[0].safetyRatings
|
|
||||||
)}`;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If this is the first chunk, try stripping speaker names from the response
|
// If this is the first chunk, try stripping speaker names from the response
|
||||||
// e.g. "John: Hello" -> "Hello"
|
// e.g. "John: Hello" -> "Hello"
|
||||||
if (index === 0) {
|
if (index === 0) {
|
||||||
@@ -66,14 +60,6 @@ export const googleAIToOpenAI: StreamingCompletionTransformer = (params) => {
|
|||||||
return { position: -1, event: newEvent };
|
return { position: -1, event: newEvent };
|
||||||
};
|
};
|
||||||
|
|
||||||
function isSafetyStop(completion: GoogleAIStreamEvent) {
|
|
||||||
const isSafetyStop = ["SAFETY", "OTHER"].includes(
|
|
||||||
completion.candidates[0].finishReason ?? ""
|
|
||||||
);
|
|
||||||
const hasNoContent = completion.candidates[0].content?.parts?.length === 0;
|
|
||||||
return isSafetyStop && hasNoContent;
|
|
||||||
}
|
|
||||||
|
|
||||||
function asCompletion(event: ServerSentEvent): GoogleAIStreamEvent | null {
|
function asCompletion(event: ServerSentEvent): GoogleAIStreamEvent | null {
|
||||||
try {
|
try {
|
||||||
const parsed = JSON.parse(event.data) as GoogleAIStreamEvent;
|
const parsed = JSON.parse(event.data) as GoogleAIStreamEvent;
|
||||||
|
|||||||
@@ -1,76 +0,0 @@
|
|||||||
import { logger } from "../../../../../logger";
|
|
||||||
import { MistralAIStreamEvent, SSEResponseTransformArgs } from "../index";
|
|
||||||
import { parseEvent, ServerSentEvent } from "../parse-sse";
|
|
||||||
|
|
||||||
const log = logger.child({
|
|
||||||
module: "sse-transformer",
|
|
||||||
transformer: "mistral-ai-to-openai",
|
|
||||||
});
|
|
||||||
|
|
||||||
export const mistralAIToOpenAI = (params: SSEResponseTransformArgs) => {
|
|
||||||
const { data } = params;
|
|
||||||
|
|
||||||
const rawEvent = parseEvent(data);
|
|
||||||
if (!rawEvent.data || rawEvent.data === "[DONE]") {
|
|
||||||
return { position: -1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
const completionEvent = asCompletion(rawEvent);
|
|
||||||
if (!completionEvent) {
|
|
||||||
return { position: -1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
if ("choices" in completionEvent) {
|
|
||||||
const newChatEvent = {
|
|
||||||
id: params.fallbackId,
|
|
||||||
object: "chat.completion.chunk" as const,
|
|
||||||
created: Date.now(),
|
|
||||||
model: params.fallbackModel,
|
|
||||||
choices: [
|
|
||||||
{
|
|
||||||
index: completionEvent.choices[0].index,
|
|
||||||
delta: { content: completionEvent.choices[0].message.content },
|
|
||||||
finish_reason: completionEvent.choices[0].stop_reason,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
return { position: -1, event: newChatEvent };
|
|
||||||
} else if ("outputs" in completionEvent) {
|
|
||||||
const newTextEvent = {
|
|
||||||
id: params.fallbackId,
|
|
||||||
object: "chat.completion.chunk" as const,
|
|
||||||
created: Date.now(),
|
|
||||||
model: params.fallbackModel,
|
|
||||||
choices: [
|
|
||||||
{
|
|
||||||
index: 0,
|
|
||||||
delta: { content: completionEvent.outputs[0].text },
|
|
||||||
finish_reason: completionEvent.outputs[0].stop_reason,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
return { position: -1, event: newTextEvent };
|
|
||||||
}
|
|
||||||
|
|
||||||
// should never happen
|
|
||||||
return { position: -1 };
|
|
||||||
};
|
|
||||||
|
|
||||||
function asCompletion(event: ServerSentEvent): MistralAIStreamEvent | null {
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(event.data);
|
|
||||||
if (
|
|
||||||
(Array.isArray(parsed.choices) &&
|
|
||||||
parsed.choices[0].message !== undefined) ||
|
|
||||||
(Array.isArray(parsed.outputs) && parsed.outputs[0].text !== undefined)
|
|
||||||
) {
|
|
||||||
return parsed;
|
|
||||||
} else {
|
|
||||||
// noinspection ExceptionCaughtLocallyJS
|
|
||||||
throw new Error("Missing required fields");
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
log.warn({ error: error.stack, event }, "Received invalid data event");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
@@ -1,63 +0,0 @@
|
|||||||
import {
|
|
||||||
MistralChatCompletionEvent,
|
|
||||||
MistralTextCompletionEvent,
|
|
||||||
StreamingCompletionTransformer,
|
|
||||||
} from "../index";
|
|
||||||
import { parseEvent, ServerSentEvent } from "../parse-sse";
|
|
||||||
import { logger } from "../../../../../logger";
|
|
||||||
|
|
||||||
const log = logger.child({
|
|
||||||
module: "sse-transformer",
|
|
||||||
transformer: "mistral-text-to-mistral-chat",
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Transforms an incoming Mistral Text SSE to an equivalent Mistral Chat SSE.
|
|
||||||
* This is generally used when a client sends a Mistral Chat prompt, but we
|
|
||||||
* convert it to Mistral Text before sending it to the API to work around
|
|
||||||
* some bugs in Mistral/AWS prompt templating. In these cases we need to convert
|
|
||||||
* the response back to Mistral Chat.
|
|
||||||
*/
|
|
||||||
export const mistralTextToMistralChat: StreamingCompletionTransformer<
|
|
||||||
MistralChatCompletionEvent
|
|
||||||
> = (params) => {
|
|
||||||
const { data } = params;
|
|
||||||
|
|
||||||
const rawEvent = parseEvent(data);
|
|
||||||
if (!rawEvent.data) {
|
|
||||||
return { position: -1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
const textCompletion = asTextCompletion(rawEvent);
|
|
||||||
if (!textCompletion) {
|
|
||||||
return { position: -1 };
|
|
||||||
}
|
|
||||||
|
|
||||||
const chatEvent: MistralChatCompletionEvent = {
|
|
||||||
choices: [
|
|
||||||
{
|
|
||||||
index: 0,
|
|
||||||
message: { role: "assistant", content: textCompletion.outputs[0].text },
|
|
||||||
stop_reason: textCompletion.outputs[0].stop_reason,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
return { position: -1, event: chatEvent };
|
|
||||||
};
|
|
||||||
|
|
||||||
function asTextCompletion(
|
|
||||||
event: ServerSentEvent
|
|
||||||
): MistralTextCompletionEvent | null {
|
|
||||||
try {
|
|
||||||
const parsed = JSON.parse(event.data);
|
|
||||||
if (Array.isArray(parsed.outputs) && parsed.outputs[0].text !== undefined) {
|
|
||||||
return parsed;
|
|
||||||
} else {
|
|
||||||
// noinspection ExceptionCaughtLocallyJS
|
|
||||||
throw new Error("Missing required fields");
|
|
||||||
}
|
|
||||||
} catch (error: any) {
|
|
||||||
log.warn({ error: error.stack, event }, "Received invalid data event");
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
+44
-87
@@ -1,61 +1,48 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
import { RequestHandler, Router } from "express";
|
||||||
import { BadRequestError } from "../shared/errors";
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
|
import { config } from "../config";
|
||||||
import { keyPool } from "../shared/key-management";
|
import { keyPool } from "../shared/key-management";
|
||||||
import {
|
import {
|
||||||
getMistralAIModelFamily,
|
getMistralAIModelFamily,
|
||||||
MistralAIModelFamily,
|
MistralAIModelFamily,
|
||||||
ModelFamily,
|
ModelFamily,
|
||||||
} from "../shared/models";
|
} from "../shared/models";
|
||||||
import { config } from "../config";
|
import { logger } from "../logger";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
addKey,
|
addKey,
|
||||||
|
createOnProxyReqHandler,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeBody,
|
finalizeBody,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
createOnProxyResHandler,
|
||||||
|
ProxyResHandlerWithBody,
|
||||||
|
} from "./middleware/response";
|
||||||
|
|
||||||
// Mistral can't settle on a single naming scheme and deprecates models within
|
|
||||||
// months of releasing them so this list is hard to keep up to date. 2024-07-28
|
|
||||||
// https://docs.mistral.ai/platform/endpoints
|
// https://docs.mistral.ai/platform/endpoints
|
||||||
export const KNOWN_MISTRAL_AI_MODELS = [
|
export const KNOWN_MISTRAL_AI_MODELS = [
|
||||||
/*
|
// Mistral 7b (open weight, legacy)
|
||||||
Mistral Nemo
|
|
||||||
"A 12B model built with the partnership with Nvidia. It is easy to use and a
|
|
||||||
drop-in replacement in any system using Mistral 7B that it supersedes."
|
|
||||||
*/
|
|
||||||
"open-mistral-nemo",
|
|
||||||
"open-mistral-nemo-2407",
|
|
||||||
/*
|
|
||||||
Mistral Large
|
|
||||||
"Our flagship model with state-of-the-art reasoning, knowledge, and coding
|
|
||||||
capabilities."
|
|
||||||
*/
|
|
||||||
"mistral-large-latest",
|
|
||||||
"mistral-large-2407",
|
|
||||||
"mistral-large-2402", // deprecated
|
|
||||||
/*
|
|
||||||
Codestral
|
|
||||||
"A cutting-edge generative model that has been specifically designed and
|
|
||||||
optimized for code generation tasks, including fill-in-the-middle and code
|
|
||||||
completion."
|
|
||||||
note: this uses a separate bidi completion endpoint that is not implemented
|
|
||||||
*/
|
|
||||||
"codestral-latest",
|
|
||||||
"codestral-2405",
|
|
||||||
/* So-called "Research Models" */
|
|
||||||
"open-mistral-7b",
|
"open-mistral-7b",
|
||||||
|
"mistral-tiny-2312",
|
||||||
|
// Mixtral 8x7b (open weight, legacy)
|
||||||
"open-mixtral-8x7b",
|
"open-mixtral-8x7b",
|
||||||
"open-mistral-8x22b",
|
"mistral-small-2312",
|
||||||
"open-codestral-mamba",
|
// Mixtral Small (newer 8x7b, closed weight)
|
||||||
/* Deprecated production models */
|
|
||||||
"mistral-small-latest",
|
"mistral-small-latest",
|
||||||
"mistral-small-2402",
|
"mistral-small-2402",
|
||||||
|
// Mistral Medium
|
||||||
"mistral-medium-latest",
|
"mistral-medium-latest",
|
||||||
"mistral-medium-2312",
|
"mistral-medium-2312",
|
||||||
|
// Mistral Large
|
||||||
|
"mistral-large-latest",
|
||||||
|
"mistral-large-2402",
|
||||||
|
// Deprecated identifiers (2024-05-01)
|
||||||
"mistral-tiny",
|
"mistral-tiny",
|
||||||
"mistral-tiny-2312",
|
"mistral-small",
|
||||||
|
"mistral-medium",
|
||||||
];
|
];
|
||||||
|
|
||||||
let modelsCache: any = null;
|
let modelsCache: any = null;
|
||||||
@@ -83,7 +70,7 @@ export function generateModelList(models = KNOWN_MISTRAL_AI_MODELS) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const handleModelRequest: RequestHandler = (_req, res) => {
|
const handleModelRequest: RequestHandler = (_req, res) => {
|
||||||
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
if (new Date().getTime() - modelsCacheTime < 1000 * 60){
|
||||||
return res.status(200).json(modelsCache);
|
return res.status(200).json(modelsCache);
|
||||||
}
|
}
|
||||||
const result = generateModelList();
|
const result = generateModelList();
|
||||||
@@ -102,28 +89,23 @@ const mistralAIResponseHandler: ProxyResHandlerWithBody = async (
|
|||||||
throw new Error("Expected body to be an object");
|
throw new Error("Expected body to be an object");
|
||||||
}
|
}
|
||||||
|
|
||||||
let newBody = body;
|
res.status(200).json({ ...body, proxy: body.proxy });
|
||||||
if (req.inboundApi === "mistral-text" && req.outboundApi === "mistral-ai") {
|
|
||||||
newBody = transformMistralTextToMistralChat(body);
|
|
||||||
}
|
|
||||||
|
|
||||||
res.status(200).json({ ...newBody, proxy: body.proxy });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export function transformMistralTextToMistralChat(textBody: any) {
|
const mistralAIProxy = createQueueMiddleware({
|
||||||
return {
|
proxyMiddleware: createProxyMiddleware({
|
||||||
...textBody,
|
target: "https://api.mistral.ai",
|
||||||
choices: [
|
changeOrigin: true,
|
||||||
{ message: { content: textBody.outputs[0].text, role: "assistant" } },
|
selfHandleResponse: true,
|
||||||
],
|
logger,
|
||||||
outputs: undefined,
|
on: {
|
||||||
};
|
proxyReq: createOnProxyReqHandler({
|
||||||
}
|
pipeline: [addKey, finalizeBody],
|
||||||
|
}),
|
||||||
const mistralAIProxy = createQueuedProxyMiddleware({
|
proxyRes: createOnProxyResHandler([mistralAIResponseHandler]),
|
||||||
target: "https://api.mistral.ai",
|
error: handleProxyError,
|
||||||
mutations: [addKey, finalizeBody],
|
},
|
||||||
blockingResponseHandler: mistralAIResponseHandler,
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
const mistralAIRouter = Router();
|
const mistralAIRouter = Router();
|
||||||
@@ -132,37 +114,12 @@ mistralAIRouter.get("/v1/models", handleModelRequest);
|
|||||||
mistralAIRouter.post(
|
mistralAIRouter.post(
|
||||||
"/v1/chat/completions",
|
"/v1/chat/completions",
|
||||||
ipLimiter,
|
ipLimiter,
|
||||||
createPreprocessorMiddleware(
|
createPreprocessorMiddleware({
|
||||||
{
|
inApi: "mistral-ai",
|
||||||
inApi: "mistral-ai",
|
outApi: "mistral-ai",
|
||||||
outApi: "mistral-ai",
|
service: "mistral-ai",
|
||||||
service: "mistral-ai",
|
}),
|
||||||
},
|
|
||||||
{ beforeTransform: [detectMistralInputApi] }
|
|
||||||
),
|
|
||||||
mistralAIProxy
|
mistralAIProxy
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
|
||||||
* We can't determine if a request is Mistral text or chat just from the path
|
|
||||||
* because they both use the same endpoint. We need to check the request body
|
|
||||||
* for either `messages` or `prompt`.
|
|
||||||
* @param req
|
|
||||||
*/
|
|
||||||
export function detectMistralInputApi(req: Request) {
|
|
||||||
const { messages, prompt } = req.body;
|
|
||||||
if (messages) {
|
|
||||||
req.inboundApi = "mistral-ai";
|
|
||||||
req.outboundApi = "mistral-ai";
|
|
||||||
} else if (prompt && req.service === "mistral-ai") {
|
|
||||||
// Mistral La Plateforme doesn't expose a text completions endpoint.
|
|
||||||
throw new BadRequestError(
|
|
||||||
"Mistral (via La Plateforme API) does not support text completions. This format is only supported on Mistral via the AWS API."
|
|
||||||
);
|
|
||||||
} else if (prompt && req.service === "aws") {
|
|
||||||
req.inboundApi = "mistral-text";
|
|
||||||
req.outboundApi = "mistral-text";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const mistralAI = mistralAIRouter;
|
export const mistralAI = mistralAIRouter;
|
||||||
|
|||||||
+29
-22
@@ -1,15 +1,22 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
import { RequestHandler, Router, Request } from "express";
|
||||||
import { OpenAIImageGenerationResult } from "../shared/file-storage/mirror-generated-image";
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { generateModelList } from "./openai";
|
import { config } from "../config";
|
||||||
|
import { logger } from "../logger";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
addKey,
|
addKey,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeBody,
|
finalizeBody,
|
||||||
|
createOnProxyReqHandler,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { ProxyReqManager } from "./middleware/request/proxy-req-manager";
|
createOnProxyResHandler,
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
ProxyResHandlerWithBody,
|
||||||
|
} from "./middleware/response";
|
||||||
|
import { generateModelList } from "./openai";
|
||||||
|
import { OpenAIImageGenerationResult } from "../shared/file-storage/mirror-generated-image";
|
||||||
|
|
||||||
const KNOWN_MODELS = ["dall-e-2", "dall-e-3"];
|
const KNOWN_MODELS = ["dall-e-2", "dall-e-3"];
|
||||||
|
|
||||||
@@ -19,9 +26,7 @@ const handleModelRequest: RequestHandler = (_req, res) => {
|
|||||||
if (new Date().getTime() - modelListValid < 1000 * 60) {
|
if (new Date().getTime() - modelListValid < 1000 * 60) {
|
||||||
return res.status(200).json(modelListCache);
|
return res.status(200).json(modelListCache);
|
||||||
}
|
}
|
||||||
const result = generateModelList("openai").filter((m: { id: string }) =>
|
const result = generateModelList(KNOWN_MODELS);
|
||||||
KNOWN_MODELS.includes(m.id)
|
|
||||||
);
|
|
||||||
modelListCache = { object: "list", data: result };
|
modelListCache = { object: "list", data: result };
|
||||||
modelListValid = new Date().getTime();
|
modelListValid = new Date().getTime();
|
||||||
res.status(200).json(modelListCache);
|
res.status(200).json(modelListCache);
|
||||||
@@ -89,19 +94,21 @@ function transformResponseForChat(
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function replacePath(manager: ProxyReqManager) {
|
const openaiImagesProxy = createQueueMiddleware({
|
||||||
const req = manager.request;
|
proxyMiddleware: createProxyMiddleware({
|
||||||
const pathname = req.url.split("?")[0];
|
target: "https://api.openai.com",
|
||||||
req.log.debug({ pathname }, "OpenAI image path filter");
|
changeOrigin: true,
|
||||||
if (req.path.startsWith("/v1/chat/completions")) {
|
selfHandleResponse: true,
|
||||||
manager.setPath("/v1/images/generations");
|
logger,
|
||||||
}
|
pathRewrite: {
|
||||||
}
|
"^/v1/chat/completions": "/v1/images/generations",
|
||||||
|
},
|
||||||
const openaiImagesProxy = createQueuedProxyMiddleware({
|
on: {
|
||||||
target: "https://api.openai.com",
|
proxyReq: createOnProxyReqHandler({ pipeline: [addKey, finalizeBody] }),
|
||||||
mutations: [replacePath, addKey, finalizeBody],
|
proxyRes: createOnProxyResHandler([openaiImagesResponseHandler]),
|
||||||
blockingResponseHandler: openaiImagesResponseHandler,
|
error: handleProxyError,
|
||||||
|
},
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
const openaiImagesRouter = Router();
|
const openaiImagesRouter = Router();
|
||||||
|
|||||||
+109
-73
@@ -1,80 +1,109 @@
|
|||||||
import { Request, RequestHandler, Router } from "express";
|
import { RequestHandler, Router } from "express";
|
||||||
|
import { createProxyMiddleware } from "http-proxy-middleware";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
import { AzureOpenAIKey, keyPool, OpenAIKey } from "../shared/key-management";
|
import { keyPool, OpenAIKey } from "../shared/key-management";
|
||||||
import { getOpenAIModelFamily } from "../shared/models";
|
import {
|
||||||
|
getOpenAIModelFamily,
|
||||||
|
ModelFamily,
|
||||||
|
OpenAIModelFamily,
|
||||||
|
} from "../shared/models";
|
||||||
|
import { logger } from "../logger";
|
||||||
|
import { createQueueMiddleware } from "./queue";
|
||||||
import { ipLimiter } from "./rate-limit";
|
import { ipLimiter } from "./rate-limit";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import {
|
import {
|
||||||
addKey,
|
addKey,
|
||||||
addKeyForEmbeddingsRequest,
|
addKeyForEmbeddingsRequest,
|
||||||
createEmbeddingsPreprocessorMiddleware,
|
createEmbeddingsPreprocessorMiddleware,
|
||||||
|
createOnProxyReqHandler,
|
||||||
createPreprocessorMiddleware,
|
createPreprocessorMiddleware,
|
||||||
finalizeBody,
|
finalizeBody,
|
||||||
|
forceModel,
|
||||||
RequestPreprocessor,
|
RequestPreprocessor,
|
||||||
} from "./middleware/request";
|
} from "./middleware/request";
|
||||||
import { ProxyResHandlerWithBody } from "./middleware/response";
|
import {
|
||||||
import { createQueuedProxyMiddleware } from "./middleware/request/proxy-middleware-factory";
|
createOnProxyResHandler,
|
||||||
|
ProxyResHandlerWithBody,
|
||||||
|
} from "./middleware/response";
|
||||||
|
|
||||||
// https://platform.openai.com/docs/models/overview
|
// https://platform.openai.com/docs/models/overview
|
||||||
|
export const KNOWN_OPENAI_MODELS = [
|
||||||
|
"gpt-4-turbo-preview",
|
||||||
|
"gpt-4-0125-preview",
|
||||||
|
"gpt-4-1106-preview",
|
||||||
|
"gpt-4-vision-preview",
|
||||||
|
"gpt-4",
|
||||||
|
"gpt-4-0613",
|
||||||
|
"gpt-4-0314", // EOL 2024-06-13
|
||||||
|
"gpt-4-32k",
|
||||||
|
"gpt-4-32k-0314", // EOL 2024-06-13
|
||||||
|
"gpt-4-32k-0613",
|
||||||
|
"gpt-3.5-turbo",
|
||||||
|
"gpt-3.5-turbo-0301", // EOL 2024-06-13
|
||||||
|
"gpt-3.5-turbo-0613",
|
||||||
|
"gpt-3.5-turbo-16k",
|
||||||
|
"gpt-3.5-turbo-16k-0613",
|
||||||
|
"gpt-3.5-turbo-instruct",
|
||||||
|
"gpt-3.5-turbo-instruct-0914",
|
||||||
|
"text-embedding-ada-002",
|
||||||
|
];
|
||||||
|
|
||||||
let modelsCache: any = null;
|
let modelsCache: any = null;
|
||||||
let modelsCacheTime = 0;
|
let modelsCacheTime = 0;
|
||||||
|
|
||||||
export function generateModelList(service: "openai" | "azure") {
|
export function generateModelList(models = KNOWN_OPENAI_MODELS) {
|
||||||
const keys = keyPool
|
// Get available families and snapshots
|
||||||
.list()
|
let availableFamilies = new Set<OpenAIModelFamily>();
|
||||||
.filter((k) => k.service === service && !k.isDisabled) as
|
const availableSnapshots = new Set<string>();
|
||||||
| OpenAIKey[]
|
for (const key of keyPool.list()) {
|
||||||
| AzureOpenAIKey[];
|
if (key.isDisabled || key.service !== "openai") continue;
|
||||||
if (keys.length === 0) return [];
|
const asOpenAIKey = key as OpenAIKey;
|
||||||
|
asOpenAIKey.modelFamilies.forEach((f) => availableFamilies.add(f));
|
||||||
|
asOpenAIKey.modelSnapshots.forEach((s) => availableSnapshots.add(s));
|
||||||
|
}
|
||||||
|
|
||||||
const allowedModelFamilies = new Set(config.allowedModelFamilies);
|
// Remove disabled families
|
||||||
const modelFamilies = new Set(
|
const allowed = new Set<ModelFamily>(config.allowedModelFamilies);
|
||||||
keys
|
availableFamilies = new Set(
|
||||||
.flatMap((k) => k.modelFamilies)
|
[...availableFamilies].filter((x) => allowed.has(x))
|
||||||
.filter((f) => allowedModelFamilies.has(f))
|
|
||||||
);
|
);
|
||||||
|
|
||||||
const modelIds = new Set(
|
return models
|
||||||
keys
|
.map((id) => ({
|
||||||
.flatMap((k) => k.modelIds)
|
id,
|
||||||
.filter((id) => {
|
object: "model",
|
||||||
const allowed = modelFamilies.has(getOpenAIModelFamily(id));
|
created: new Date().getTime(),
|
||||||
const known = ["gpt", "o1", "dall-e", "chatgpt", "text-embedding"].some(
|
owned_by: "openai",
|
||||||
(prefix) => id.startsWith(prefix)
|
permission: [
|
||||||
);
|
{
|
||||||
const isFinetune = id.includes("ft");
|
id: "modelperm-" + id,
|
||||||
return allowed && known && !isFinetune;
|
object: "model_permission",
|
||||||
})
|
created: new Date().getTime(),
|
||||||
);
|
organization: "*",
|
||||||
|
group: null,
|
||||||
|
is_blocking: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
root: id,
|
||||||
|
parent: null,
|
||||||
|
}))
|
||||||
|
.filter((model) => {
|
||||||
|
// First check if the family is available
|
||||||
|
const hasFamily = availableFamilies.has(getOpenAIModelFamily(model.id));
|
||||||
|
if (!hasFamily) return false;
|
||||||
|
|
||||||
return Array.from(modelIds).map((id) => ({
|
// Then for snapshots, ensure the specific snapshot is available
|
||||||
id,
|
const isSnapshot = model.id.match(/-\d{4}(-preview)?$/);
|
||||||
object: "model",
|
if (!isSnapshot) return true;
|
||||||
created: new Date().getTime(),
|
return availableSnapshots.has(model.id);
|
||||||
owned_by: service,
|
});
|
||||||
permission: [
|
|
||||||
{
|
|
||||||
id: "modelperm-" + id,
|
|
||||||
object: "model_permission",
|
|
||||||
created: new Date().getTime(),
|
|
||||||
organization: "*",
|
|
||||||
group: null,
|
|
||||||
is_blocking: false,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
root: id,
|
|
||||||
parent: null,
|
|
||||||
}));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleModelRequest: RequestHandler = (_req, res) => {
|
const handleModelRequest: RequestHandler = (_req, res) => {
|
||||||
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
if (new Date().getTime() - modelsCacheTime < 1000 * 60) {
|
||||||
return res.status(200).json(modelsCache);
|
return res.status(200).json(modelsCache);
|
||||||
}
|
}
|
||||||
|
const result = generateModelList();
|
||||||
if (!config.openaiKey) return { object: "list", data: [] };
|
|
||||||
|
|
||||||
const result = generateModelList("openai");
|
|
||||||
|
|
||||||
modelsCache = { object: "list", data: result };
|
modelsCache = { object: "list", data: result };
|
||||||
modelsCacheTime = new Date().getTime();
|
modelsCacheTime = new Date().getTime();
|
||||||
res.status(200).json(modelsCache);
|
res.status(200).json(modelsCache);
|
||||||
@@ -118,6 +147,7 @@ const openaiResponseHandler: ProxyResHandlerWithBody = async (
|
|||||||
res.status(200).json({ ...newBody, proxy: body.proxy });
|
res.status(200).json({ ...newBody, proxy: body.proxy });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/** Only used for non-streaming responses. */
|
||||||
function transformTurboInstructResponse(
|
function transformTurboInstructResponse(
|
||||||
turboInstructBody: Record<string, any>
|
turboInstructBody: Record<string, any>
|
||||||
): Record<string, any> {
|
): Record<string, any> {
|
||||||
@@ -135,15 +165,31 @@ function transformTurboInstructResponse(
|
|||||||
return transformed;
|
return transformed;
|
||||||
}
|
}
|
||||||
|
|
||||||
const openaiProxy = createQueuedProxyMiddleware({
|
const openaiProxy = createQueueMiddleware({
|
||||||
mutations: [addKey, finalizeBody],
|
proxyMiddleware: createProxyMiddleware({
|
||||||
target: "https://api.openai.com",
|
target: "https://api.openai.com",
|
||||||
blockingResponseHandler: openaiResponseHandler,
|
changeOrigin: true,
|
||||||
|
selfHandleResponse: true,
|
||||||
|
logger,
|
||||||
|
on: {
|
||||||
|
proxyReq: createOnProxyReqHandler({ pipeline: [addKey, finalizeBody] }),
|
||||||
|
proxyRes: createOnProxyResHandler([openaiResponseHandler]),
|
||||||
|
error: handleProxyError,
|
||||||
|
},
|
||||||
|
}),
|
||||||
});
|
});
|
||||||
|
|
||||||
const openaiEmbeddingsProxy = createQueuedProxyMiddleware({
|
const openaiEmbeddingsProxy = createProxyMiddleware({
|
||||||
mutations: [addKeyForEmbeddingsRequest, finalizeBody],
|
|
||||||
target: "https://api.openai.com",
|
target: "https://api.openai.com",
|
||||||
|
changeOrigin: true,
|
||||||
|
selfHandleResponse: false,
|
||||||
|
logger,
|
||||||
|
on: {
|
||||||
|
proxyReq: createOnProxyReqHandler({
|
||||||
|
pipeline: [addKeyForEmbeddingsRequest, finalizeBody],
|
||||||
|
}),
|
||||||
|
error: handleProxyError,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const openaiRouter = Router();
|
const openaiRouter = Router();
|
||||||
@@ -176,10 +222,11 @@ openaiRouter.post(
|
|||||||
openaiRouter.post(
|
openaiRouter.post(
|
||||||
"/v1/chat/completions",
|
"/v1/chat/completions",
|
||||||
ipLimiter,
|
ipLimiter,
|
||||||
createPreprocessorMiddleware(
|
createPreprocessorMiddleware({
|
||||||
{ inApi: "openai", outApi: "openai", service: "openai" },
|
inApi: "openai",
|
||||||
{ afterTransform: [fixupMaxTokens] }
|
outApi: "openai",
|
||||||
),
|
service: "openai",
|
||||||
|
}),
|
||||||
openaiProxy
|
openaiProxy
|
||||||
);
|
);
|
||||||
// Embeddings endpoint.
|
// Embeddings endpoint.
|
||||||
@@ -190,15 +237,4 @@ openaiRouter.post(
|
|||||||
openaiEmbeddingsProxy
|
openaiEmbeddingsProxy
|
||||||
);
|
);
|
||||||
|
|
||||||
function forceModel(model: string): RequestPreprocessor {
|
|
||||||
return (req: Request) => void (req.body.model = model);
|
|
||||||
}
|
|
||||||
|
|
||||||
function fixupMaxTokens(req: Request) {
|
|
||||||
if (!req.body.max_completion_tokens) {
|
|
||||||
req.body.max_completion_tokens = req.body.max_tokens;
|
|
||||||
}
|
|
||||||
delete req.body.max_tokens;
|
|
||||||
}
|
|
||||||
|
|
||||||
export const openai = openaiRouter;
|
export const openai = openaiRouter;
|
||||||
|
|||||||
+67
-64
@@ -12,8 +12,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
import crypto from "crypto";
|
import crypto from "crypto";
|
||||||
import { Handler, Request } from "express";
|
import type { Handler, Request } from "express";
|
||||||
import { config } from "../config";
|
|
||||||
import { BadRequestError, TooManyRequestsError } from "../shared/errors";
|
import { BadRequestError, TooManyRequestsError } from "../shared/errors";
|
||||||
import { keyPool } from "../shared/key-management";
|
import { keyPool } from "../shared/key-management";
|
||||||
import {
|
import {
|
||||||
@@ -23,25 +22,24 @@ import {
|
|||||||
} from "../shared/models";
|
} from "../shared/models";
|
||||||
import { initializeSseStream } from "../shared/streaming";
|
import { initializeSseStream } from "../shared/streaming";
|
||||||
import { logger } from "../logger";
|
import { logger } from "../logger";
|
||||||
import { getUniqueIps } from "./rate-limit";
|
import { getUniqueIps, SHARED_IP_ADDRESSES } from "./rate-limit";
|
||||||
import { ProxyReqMutator, RequestPreprocessor } from "./middleware/request";
|
import { RequestPreprocessor } from "./middleware/request";
|
||||||
|
import { handleProxyError } from "./middleware/common";
|
||||||
import { sendErrorToClient } from "./middleware/response/error-generator";
|
import { sendErrorToClient } from "./middleware/response/error-generator";
|
||||||
import { ProxyReqManager } from "./middleware/request/proxy-req-manager";
|
|
||||||
import { classifyErrorAndSend } from "./middleware/common";
|
|
||||||
|
|
||||||
const queue: Request[] = [];
|
const queue: Request[] = [];
|
||||||
const log = logger.child({ module: "request-queue" });
|
const log = logger.child({ module: "request-queue" });
|
||||||
|
|
||||||
|
/** Maximum number of queue slots for Agnai.chat requests. */
|
||||||
|
const AGNAI_CONCURRENCY_LIMIT = 5;
|
||||||
/** Maximum number of queue slots for individual users. */
|
/** Maximum number of queue slots for individual users. */
|
||||||
const USER_CONCURRENCY_LIMIT = parseInt(
|
const USER_CONCURRENCY_LIMIT = 1;
|
||||||
process.env.USER_CONCURRENCY_LIMIT ?? "1"
|
|
||||||
);
|
|
||||||
const MIN_HEARTBEAT_SIZE = parseInt(process.env.MIN_HEARTBEAT_SIZE_B ?? "512");
|
const MIN_HEARTBEAT_SIZE = parseInt(process.env.MIN_HEARTBEAT_SIZE_B ?? "512");
|
||||||
const MAX_HEARTBEAT_SIZE =
|
const MAX_HEARTBEAT_SIZE =
|
||||||
1024 * parseInt(process.env.MAX_HEARTBEAT_SIZE_KB ?? "1024");
|
1024 * parseInt(process.env.MAX_HEARTBEAT_SIZE_KB ?? "1024");
|
||||||
const HEARTBEAT_INTERVAL =
|
const HEARTBEAT_INTERVAL =
|
||||||
1000 * parseInt(process.env.HEARTBEAT_INTERVAL_SEC ?? "5");
|
1000 * parseInt(process.env.HEARTBEAT_INTERVAL_SEC ?? "5");
|
||||||
const LOAD_THRESHOLD = parseFloat(process.env.LOAD_THRESHOLD ?? "150");
|
const LOAD_THRESHOLD = parseFloat(process.env.LOAD_THRESHOLD ?? "50");
|
||||||
const PAYLOAD_SCALE_FACTOR = parseFloat(
|
const PAYLOAD_SCALE_FACTOR = parseFloat(
|
||||||
process.env.PAYLOAD_SCALE_FACTOR ?? "6"
|
process.env.PAYLOAD_SCALE_FACTOR ?? "6"
|
||||||
);
|
);
|
||||||
@@ -60,28 +58,39 @@ const QUEUE_JOIN_TIMEOUT = 5000;
|
|||||||
function getIdentifier(req: Request) {
|
function getIdentifier(req: Request) {
|
||||||
if (req.user) return req.user.token;
|
if (req.user) return req.user.token;
|
||||||
if (req.risuToken) return req.risuToken;
|
if (req.risuToken) return req.risuToken;
|
||||||
// if (isFromSharedIp(req)) return "shared-ip";
|
if (isFromSharedIp(req)) return "shared-ip";
|
||||||
return req.ip;
|
return req.ip;
|
||||||
}
|
}
|
||||||
|
|
||||||
const sharesIdentifierWith = (incoming: Request) => (queued: Request) =>
|
const sharesIdentifierWith = (incoming: Request) => (queued: Request) =>
|
||||||
getIdentifier(queued) === getIdentifier(incoming);
|
getIdentifier(queued) === getIdentifier(incoming);
|
||||||
|
|
||||||
async function enqueue(req: Request) {
|
const isFromSharedIp = (req: Request) => SHARED_IP_ADDRESSES.has(req.ip);
|
||||||
if (req.socket.destroyed || req.res?.writableEnded) {
|
|
||||||
// In rare cases, a request can be disconnected after it is dequeued for a
|
|
||||||
// retry, but before it is re-enqueued. In this case we may miss the abort
|
|
||||||
// and the request will loop in the queue forever.
|
|
||||||
req.log.warn("Attempt to enqueue aborted request.");
|
|
||||||
throw new Error("Attempt to enqueue aborted request.");
|
|
||||||
}
|
|
||||||
|
|
||||||
|
export async function enqueue(req: Request) {
|
||||||
const enqueuedRequestCount = queue.filter(sharesIdentifierWith(req)).length;
|
const enqueuedRequestCount = queue.filter(sharesIdentifierWith(req)).length;
|
||||||
|
let isGuest = req.user?.token === undefined;
|
||||||
|
|
||||||
if (enqueuedRequestCount >= USER_CONCURRENCY_LIMIT) {
|
// Requests from shared IP addresses such as Agnai.chat are exempt from IP-
|
||||||
throw new TooManyRequestsError(
|
// based rate limiting but can only occupy a certain number of slots in the
|
||||||
"Your IP or user token already has another request in the queue."
|
// queue. Authenticated users always get a single spot in the queue.
|
||||||
);
|
const isSharedIp = isFromSharedIp(req);
|
||||||
|
const maxConcurrentQueuedRequests =
|
||||||
|
isGuest && isSharedIp ? AGNAI_CONCURRENCY_LIMIT : USER_CONCURRENCY_LIMIT;
|
||||||
|
if (enqueuedRequestCount >= maxConcurrentQueuedRequests) {
|
||||||
|
if (isSharedIp) {
|
||||||
|
// Re-enqueued requests are not counted towards the limit since they
|
||||||
|
// already made it through the queue once.
|
||||||
|
if (req.retryCount === 0) {
|
||||||
|
throw new TooManyRequestsError(
|
||||||
|
"Too many agnai.chat requests are already queued"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new TooManyRequestsError(
|
||||||
|
"Your IP or user token already has another request in the queue."
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// shitty hack to remove hpm's event listeners on retried requests
|
// shitty hack to remove hpm's event listeners on retried requests
|
||||||
@@ -127,17 +136,20 @@ async function enqueue(req: Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function reenqueueRequest(req: Request) {
|
|
||||||
req.log.info(
|
|
||||||
{ key: req.key?.hash, retryCount: req.retryCount },
|
|
||||||
`Re-enqueueing request due to retryable error`
|
|
||||||
);
|
|
||||||
req.retryCount++;
|
|
||||||
await enqueue(req);
|
|
||||||
}
|
|
||||||
|
|
||||||
function getQueueForPartition(partition: ModelFamily): Request[] {
|
function getQueueForPartition(partition: ModelFamily): Request[] {
|
||||||
return queue.filter((req) => getModelFamilyForRequest(req) === partition);
|
return queue
|
||||||
|
.filter((req) => getModelFamilyForRequest(req) === partition)
|
||||||
|
.sort((a, b) => {
|
||||||
|
// Certain requests are exempted from IP-based rate limiting because they
|
||||||
|
// come from a shared IP address. To prevent these requests from starving
|
||||||
|
// out other requests during periods of high traffic, we sort them to the
|
||||||
|
// end of the queue.
|
||||||
|
const aIsExempted = isFromSharedIp(a);
|
||||||
|
const bIsExempted = isFromSharedIp(b);
|
||||||
|
if (aIsExempted && !bIsExempted) return 1;
|
||||||
|
if (!aIsExempted && bIsExempted) return -1;
|
||||||
|
return 0;
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
export function dequeue(partition: ModelFamily): Request | undefined {
|
export function dequeue(partition: ModelFamily): Request | undefined {
|
||||||
@@ -148,14 +160,7 @@ export function dequeue(partition: ModelFamily): Request | undefined {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const req = modelQueue.reduce((prev, curr) =>
|
const req = modelQueue.reduce((prev, curr) =>
|
||||||
prev.startTime +
|
prev.startTime < curr.startTime ? prev : curr
|
||||||
config.tokensPunishmentFactor *
|
|
||||||
((prev.promptTokens ?? 0) + (prev.outputTokens ?? 0)) <
|
|
||||||
curr.startTime +
|
|
||||||
config.tokensPunishmentFactor *
|
|
||||||
((curr.promptTokens ?? 0) + (curr.outputTokens ?? 0))
|
|
||||||
? prev
|
|
||||||
: curr
|
|
||||||
);
|
);
|
||||||
queue.splice(queue.indexOf(req), 1);
|
queue.splice(queue.indexOf(req), 1);
|
||||||
|
|
||||||
@@ -247,6 +252,7 @@ let waitTimes: {
|
|||||||
partition: ModelFamily;
|
partition: ModelFamily;
|
||||||
start: number;
|
start: number;
|
||||||
end: number;
|
end: number;
|
||||||
|
isDeprioritized: boolean;
|
||||||
}[] = [];
|
}[] = [];
|
||||||
|
|
||||||
/** Adds a successful request to the list of wait times. */
|
/** Adds a successful request to the list of wait times. */
|
||||||
@@ -255,6 +261,7 @@ export function trackWaitTime(req: Request) {
|
|||||||
partition: getModelFamilyForRequest(req),
|
partition: getModelFamilyForRequest(req),
|
||||||
start: req.startTime!,
|
start: req.startTime!,
|
||||||
end: req.queueOutTime ?? Date.now(),
|
end: req.queueOutTime ?? Date.now(),
|
||||||
|
isDeprioritized: isFromSharedIp(req),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -280,7 +287,8 @@ function calculateWaitTime(partition: ModelFamily) {
|
|||||||
.filter((wait) => {
|
.filter((wait) => {
|
||||||
const isSamePartition = wait.partition === partition;
|
const isSamePartition = wait.partition === partition;
|
||||||
const isRecent = now - wait.end < 300 * 1000;
|
const isRecent = now - wait.end < 300 * 1000;
|
||||||
return isSamePartition && isRecent;
|
const isNormalPriority = !wait.isDeprioritized;
|
||||||
|
return isSamePartition && isRecent && isNormalPriority;
|
||||||
})
|
})
|
||||||
.map((wait) => wait.end - wait.start);
|
.map((wait) => wait.end - wait.start);
|
||||||
const recentAverage = recentWaits.length
|
const recentAverage = recentWaits.length
|
||||||
@@ -294,7 +302,11 @@ function calculateWaitTime(partition: ModelFamily) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
const currentWaits = queue
|
const currentWaits = queue
|
||||||
.filter((req) => getModelFamilyForRequest(req) === partition)
|
.filter((req) => {
|
||||||
|
const isSamePartition = getModelFamilyForRequest(req) === partition;
|
||||||
|
const isNormalPriority = !isFromSharedIp(req);
|
||||||
|
return isSamePartition && isNormalPriority;
|
||||||
|
})
|
||||||
.map((req) => now - req.startTime!);
|
.map((req) => now - req.startTime!);
|
||||||
const longestCurrentWait = Math.max(...currentWaits, 0);
|
const longestCurrentWait = Math.max(...currentWaits, 0);
|
||||||
|
|
||||||
@@ -322,35 +334,26 @@ export function getQueueLength(partition: ModelFamily | "all" = "all") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export function createQueueMiddleware({
|
export function createQueueMiddleware({
|
||||||
mutations = [],
|
beforeProxy,
|
||||||
proxyMiddleware,
|
proxyMiddleware,
|
||||||
}: {
|
}: {
|
||||||
mutations?: ProxyReqMutator[];
|
beforeProxy?: RequestPreprocessor;
|
||||||
proxyMiddleware: Handler;
|
proxyMiddleware: Handler;
|
||||||
}): Handler {
|
}): Handler {
|
||||||
return async (req, res, next) => {
|
return async (req, res, next) => {
|
||||||
req.proceed = async () => {
|
req.proceed = async () => {
|
||||||
// canonicalize the stream field which is set in a few places not always
|
if (beforeProxy) {
|
||||||
// consistently
|
try {
|
||||||
req.isStreaming = req.isStreaming || String(req.body.stream) === "true";
|
// Hack to let us run asynchronous middleware before the
|
||||||
req.body.stream = req.isStreaming;
|
// http-proxy-middleware handler. This is used to sign AWS requests
|
||||||
|
// before they are proxied, as the signing is asynchronous.
|
||||||
try {
|
// Unlike RequestPreprocessors, this runs every time the request is
|
||||||
// Just before executing the proxyMiddleware, we will create a
|
// dequeued, not just the first time.
|
||||||
// ProxyReqManager to track modifications to the request. This allows
|
await beforeProxy(req);
|
||||||
// us to revert those changes if the proxied request fails with a
|
} catch (err) {
|
||||||
// retryable error. That happens in proxyMiddleware's onProxyRes
|
return handleProxyError(err, req, res);
|
||||||
// handler.
|
|
||||||
const changeManager = new ProxyReqManager(req);
|
|
||||||
req.changeManager = changeManager;
|
|
||||||
for (const mutator of mutations) {
|
|
||||||
await mutator(changeManager);
|
|
||||||
}
|
}
|
||||||
} catch (err) {
|
|
||||||
// Failure during request preparation is a fatal error.
|
|
||||||
return classifyErrorAndSend(err, req, res);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
proxyMiddleware(req, res, next);
|
proxyMiddleware(req, res, next);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
+32
-15
@@ -1,6 +1,14 @@
|
|||||||
import { Request, Response, NextFunction } from "express";
|
import { Request, Response, NextFunction } from "express";
|
||||||
import { config } from "../config";
|
import { config } from "../config";
|
||||||
|
|
||||||
|
export const SHARED_IP_ADDRESSES = new Set([
|
||||||
|
// Agnai.chat
|
||||||
|
"157.230.249.32", // old
|
||||||
|
"157.245.148.56",
|
||||||
|
"174.138.29.50",
|
||||||
|
"209.97.162.44",
|
||||||
|
]);
|
||||||
|
|
||||||
const ONE_MINUTE_MS = 60 * 1000;
|
const ONE_MINUTE_MS = 60 * 1000;
|
||||||
|
|
||||||
type Timestamp = number;
|
type Timestamp = number;
|
||||||
@@ -12,10 +20,7 @@ const exemptedRequests: Timestamp[] = [];
|
|||||||
const isRecentAttempt = (now: Timestamp) => (attempt: Timestamp) =>
|
const isRecentAttempt = (now: Timestamp) => (attempt: Timestamp) =>
|
||||||
attempt > now - ONE_MINUTE_MS;
|
attempt > now - ONE_MINUTE_MS;
|
||||||
|
|
||||||
/**
|
const getTryAgainInMs = (ip: string, type: "text" | "image") => {
|
||||||
* Returns duration in seconds to wait before retrying for Retry-After header.
|
|
||||||
*/
|
|
||||||
const getRetryAfter = (ip: string, type: "text" | "image") => {
|
|
||||||
const now = Date.now();
|
const now = Date.now();
|
||||||
const attempts = lastAttempts.get(ip) || [];
|
const attempts = lastAttempts.get(ip) || [];
|
||||||
const validAttempts = attempts.filter(isRecentAttempt(now));
|
const validAttempts = attempts.filter(isRecentAttempt(now));
|
||||||
@@ -24,7 +29,7 @@ const getRetryAfter = (ip: string, type: "text" | "image") => {
|
|||||||
type === "text" ? config.textModelRateLimit : config.imageModelRateLimit;
|
type === "text" ? config.textModelRateLimit : config.imageModelRateLimit;
|
||||||
|
|
||||||
if (validAttempts.length >= limit) {
|
if (validAttempts.length >= limit) {
|
||||||
return (validAttempts[0] - now + ONE_MINUTE_MS) / 1000;
|
return validAttempts[0] - now + ONE_MINUTE_MS;
|
||||||
} else {
|
} else {
|
||||||
lastAttempts.set(ip, [...validAttempts, now]);
|
lastAttempts.set(ip, [...validAttempts, now]);
|
||||||
return 0;
|
return 0;
|
||||||
@@ -91,11 +96,22 @@ export const ipLimiter = async (
|
|||||||
if (!textLimit && !imageLimit) return next();
|
if (!textLimit && !imageLimit) return next();
|
||||||
if (req.user?.type === "special") return next();
|
if (req.user?.type === "special") return next();
|
||||||
|
|
||||||
const path = req.baseUrl + req.path;
|
// Exempts Agnai.chat from IP-based rate limiting because its IPs are shared
|
||||||
const type =
|
// by many users. Instead, the request queue will limit the number of such
|
||||||
path.includes("openai-image") || path.includes("images/generations")
|
// requests that may wait in the queue at a time, and sorts them to the end to
|
||||||
? "image"
|
// let individual users go first.
|
||||||
: "text";
|
if (SHARED_IP_ADDRESSES.has(req.ip)) {
|
||||||
|
exemptedRequests.push(Date.now());
|
||||||
|
req.log.info(
|
||||||
|
{ ip: req.ip, recentExemptions: exemptedRequests.length },
|
||||||
|
"Exempting Agnai request from rate limiting."
|
||||||
|
);
|
||||||
|
return next();
|
||||||
|
}
|
||||||
|
|
||||||
|
const type = (req.baseUrl + req.path).includes("openai-image")
|
||||||
|
? "image"
|
||||||
|
: "text";
|
||||||
const limit = type === "image" ? imageLimit : textLimit;
|
const limit = type === "image" ? imageLimit : textLimit;
|
||||||
|
|
||||||
// If user is authenticated, key rate limiting by their token. Otherwise, key
|
// If user is authenticated, key rate limiting by their token. Otherwise, key
|
||||||
@@ -107,14 +123,15 @@ export const ipLimiter = async (
|
|||||||
res.set("X-RateLimit-Remaining", remaining.toString());
|
res.set("X-RateLimit-Remaining", remaining.toString());
|
||||||
res.set("X-RateLimit-Reset", reset.toString());
|
res.set("X-RateLimit-Reset", reset.toString());
|
||||||
|
|
||||||
const retryAfterTime = getRetryAfter(rateLimitKey, type);
|
const tryAgainInMs = getTryAgainInMs(rateLimitKey, type);
|
||||||
if (retryAfterTime > 0) {
|
if (tryAgainInMs > 0) {
|
||||||
const waitSec = Math.ceil(retryAfterTime).toString();
|
res.set("Retry-After", tryAgainInMs.toString());
|
||||||
res.set("Retry-After", waitSec);
|
|
||||||
res.status(429).json({
|
res.status(429).json({
|
||||||
error: {
|
error: {
|
||||||
type: "proxy_rate_limited",
|
type: "proxy_rate_limited",
|
||||||
message: `This model type is rate limited to ${limit} prompts per minute. Please try again in ${waitSec} seconds.`,
|
message: `This model type is rate limited to ${limit} prompts per minute. Please try again in ${Math.ceil(
|
||||||
|
tryAgainInMs / 1000
|
||||||
|
)} seconds.`,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
+19
-25
@@ -1,55 +1,42 @@
|
|||||||
import express from "express";
|
import express, { Request, Response, NextFunction } from "express";
|
||||||
import { addV1 } from "./add-v1";
|
|
||||||
import { anthropic } from "./anthropic";
|
|
||||||
import { aws } from "./aws";
|
|
||||||
import { azure } from "./azure";
|
|
||||||
import { checkRisuToken } from "./check-risu-token";
|
|
||||||
import { gatekeeper } from "./gatekeeper";
|
import { gatekeeper } from "./gatekeeper";
|
||||||
import { gcp } from "./gcp";
|
import { checkRisuToken } from "./check-risu-token";
|
||||||
import { googleAI } from "./google-ai";
|
|
||||||
import { mistralAI } from "./mistral-ai";
|
|
||||||
import { openai } from "./openai";
|
import { openai } from "./openai";
|
||||||
import { openaiImage } from "./openai-image";
|
import { openaiImage } from "./openai-image";
|
||||||
|
import { anthropic } from "./anthropic";
|
||||||
|
import { googleAI } from "./google-ai";
|
||||||
|
import { mistralAI } from "./mistral-ai";
|
||||||
|
import { aws } from "./aws";
|
||||||
|
import { azure } from "./azure";
|
||||||
import { sendErrorToClient } from "./middleware/response/error-generator";
|
import { sendErrorToClient } from "./middleware/response/error-generator";
|
||||||
|
|
||||||
const proxyRouter = express.Router();
|
const proxyRouter = express.Router();
|
||||||
|
|
||||||
// Remove `expect: 100-continue` header from requests due to incompatibility
|
|
||||||
// with node-http-proxy.
|
|
||||||
proxyRouter.use((req, _res, next) => {
|
proxyRouter.use((req, _res, next) => {
|
||||||
if (req.headers.expect) {
|
if (req.headers.expect) {
|
||||||
|
// node-http-proxy does not like it when clients send `expect: 100-continue`
|
||||||
|
// and will stall. none of the upstream APIs use this header anyway.
|
||||||
delete req.headers.expect;
|
delete req.headers.expect;
|
||||||
}
|
}
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Apply body parsers.
|
|
||||||
proxyRouter.use(
|
proxyRouter.use(
|
||||||
express.json({ limit: "100mb" }),
|
express.json({ limit: "100mb" }),
|
||||||
express.urlencoded({ extended: true, limit: "100mb" })
|
express.urlencoded({ extended: true, limit: "100mb" })
|
||||||
);
|
);
|
||||||
|
|
||||||
// Apply auth/rate limits.
|
|
||||||
proxyRouter.use(gatekeeper);
|
proxyRouter.use(gatekeeper);
|
||||||
proxyRouter.use(checkRisuToken);
|
proxyRouter.use(checkRisuToken);
|
||||||
|
|
||||||
// Initialize request queue metadata.
|
|
||||||
proxyRouter.use((req, _res, next) => {
|
proxyRouter.use((req, _res, next) => {
|
||||||
req.startTime = Date.now();
|
req.startTime = Date.now();
|
||||||
req.retryCount = 0;
|
req.retryCount = 0;
|
||||||
next();
|
next();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Proxy endpoints.
|
|
||||||
proxyRouter.use("/openai", addV1, openai);
|
proxyRouter.use("/openai", addV1, openai);
|
||||||
proxyRouter.use("/openai-image", addV1, openaiImage);
|
proxyRouter.use("/openai-image", addV1, openaiImage);
|
||||||
proxyRouter.use("/anthropic", addV1, anthropic);
|
proxyRouter.use("/anthropic", addV1, anthropic);
|
||||||
proxyRouter.use("/google-ai", addV1, googleAI);
|
proxyRouter.use("/google-ai", addV1, googleAI);
|
||||||
proxyRouter.use("/mistral-ai", addV1, mistralAI);
|
proxyRouter.use("/mistral-ai", addV1, mistralAI);
|
||||||
proxyRouter.use("/aws", aws);
|
proxyRouter.use("/aws/claude", addV1, aws);
|
||||||
proxyRouter.use("/gcp/claude", addV1, gcp);
|
|
||||||
proxyRouter.use("/azure/openai", addV1, azure);
|
proxyRouter.use("/azure/openai", addV1, azure);
|
||||||
|
|
||||||
// Redirect browser requests to the homepage.
|
// Redirect browser requests to the homepage.
|
||||||
proxyRouter.get("*", (req, res, next) => {
|
proxyRouter.get("*", (req, res, next) => {
|
||||||
const isBrowser = req.headers["user-agent"]?.includes("Mozilla");
|
const isBrowser = req.headers["user-agent"]?.includes("Mozilla");
|
||||||
@@ -59,8 +46,7 @@ proxyRouter.get("*", (req, res, next) => {
|
|||||||
next();
|
next();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
// Handle 404s.
|
||||||
// Send a fake client error if user specifies an invalid proxy endpoint.
|
|
||||||
proxyRouter.use((req, res) => {
|
proxyRouter.use((req, res) => {
|
||||||
sendErrorToClient({
|
sendErrorToClient({
|
||||||
req,
|
req,
|
||||||
@@ -81,3 +67,11 @@ proxyRouter.use((req, res) => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
export { proxyRouter as proxyRouter };
|
export { proxyRouter as proxyRouter };
|
||||||
|
|
||||||
|
function addV1(req: Request, res: Response, next: NextFunction) {
|
||||||
|
// Clients don't consistently use the /v1 prefix so we'll add it for them.
|
||||||
|
if (!req.path.startsWith("/v1/")) {
|
||||||
|
req.url = `/v1${req.url}`;
|
||||||
|
}
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
|||||||
+2
-54
@@ -8,7 +8,6 @@ import pinoHttp from "pino-http";
|
|||||||
import os from "os";
|
import os from "os";
|
||||||
import childProcess from "child_process";
|
import childProcess from "child_process";
|
||||||
import { logger } from "./logger";
|
import { logger } from "./logger";
|
||||||
import { createBlacklistMiddleware } from "./shared/cidr";
|
|
||||||
import { setupAssetsDir } from "./shared/file-storage/setup-assets-dir";
|
import { setupAssetsDir } from "./shared/file-storage/setup-assets-dir";
|
||||||
import { keyPool } from "./shared/key-management";
|
import { keyPool } from "./shared/key-management";
|
||||||
import { adminRouter } from "./admin/routes";
|
import { adminRouter } from "./admin/routes";
|
||||||
@@ -22,8 +21,6 @@ import { init as initUserStore } from "./shared/users/user-store";
|
|||||||
import { init as initTokenizers } from "./shared/tokenization";
|
import { init as initTokenizers } from "./shared/tokenization";
|
||||||
import { checkOrigin } from "./proxy/check-origin";
|
import { checkOrigin } from "./proxy/check-origin";
|
||||||
import { sendErrorToClient } from "./proxy/middleware/response/error-generator";
|
import { sendErrorToClient } from "./proxy/middleware/response/error-generator";
|
||||||
import { initializeDatabase, getDatabase } from "./shared/database";
|
|
||||||
import { initializeFirebase } from "./shared/firebase";
|
|
||||||
|
|
||||||
const PORT = config.port;
|
const PORT = config.port;
|
||||||
const BIND_ADDRESS = config.bindAddress;
|
const BIND_ADDRESS = config.bindAddress;
|
||||||
@@ -34,23 +31,16 @@ app.use(
|
|||||||
pinoHttp({
|
pinoHttp({
|
||||||
quietReqLogger: true,
|
quietReqLogger: true,
|
||||||
logger,
|
logger,
|
||||||
autoLogging: {
|
autoLogging: { ignore: ({ url }) => ["/health"].includes(url as string) },
|
||||||
ignore: ({ url }) => {
|
|
||||||
const ignoreList = ["/health", "/res", "/user_content"];
|
|
||||||
return ignoreList.some((path) => (url as string).startsWith(path));
|
|
||||||
},
|
|
||||||
},
|
|
||||||
redact: {
|
redact: {
|
||||||
paths: [
|
paths: [
|
||||||
"req.headers.cookie",
|
"req.headers.cookie",
|
||||||
'res.headers["set-cookie"]',
|
'res.headers["set-cookie"]',
|
||||||
"req.headers.authorization",
|
"req.headers.authorization",
|
||||||
'req.headers["x-api-key"]',
|
'req.headers["x-api-key"]',
|
||||||
'req.headers["api-key"]',
|
|
||||||
// Don't log the prompt text on transform errors
|
// Don't log the prompt text on transform errors
|
||||||
"body.messages",
|
"body.messages",
|
||||||
"body.prompt",
|
"body.prompt",
|
||||||
"body.contents",
|
|
||||||
],
|
],
|
||||||
censor: "********",
|
censor: "********",
|
||||||
},
|
},
|
||||||
@@ -72,32 +62,12 @@ app.set("views", [
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
app.use("/user_content", express.static(USER_ASSETS_DIR, { maxAge: "2h" }));
|
app.use("/user_content", express.static(USER_ASSETS_DIR, { maxAge: "2h" }));
|
||||||
app.use(
|
|
||||||
"/res",
|
|
||||||
express.static(path.join(__dirname, "..", "public"), {
|
|
||||||
maxAge: "2h",
|
|
||||||
etag: false,
|
|
||||||
})
|
|
||||||
);
|
|
||||||
|
|
||||||
app.get("/health", (_req, res) => res.sendStatus(200));
|
app.get("/health", (_req, res) => res.sendStatus(200));
|
||||||
app.use(cors());
|
app.use(cors());
|
||||||
|
|
||||||
const blacklist = createBlacklistMiddleware("IP_BLACKLIST", config.ipBlacklist);
|
|
||||||
app.use(blacklist);
|
|
||||||
|
|
||||||
app.use(checkOrigin);
|
app.use(checkOrigin);
|
||||||
|
|
||||||
app.use("/admin", adminRouter);
|
app.use("/admin", adminRouter);
|
||||||
app.use((req, _, next) => {
|
|
||||||
// For whatever reason SillyTavern just ignores the path a user provides
|
|
||||||
// when using Google AI with reverse proxy. We'll fix it here.
|
|
||||||
if (req.path.startsWith("/v1beta/models/")) {
|
|
||||||
req.url = `${config.proxyEndpointRoute}/google-ai${req.url}`;
|
|
||||||
return next();
|
|
||||||
}
|
|
||||||
next();
|
|
||||||
});
|
|
||||||
app.use(config.proxyEndpointRoute, proxyRouter);
|
app.use(config.proxyEndpointRoute, proxyRouter);
|
||||||
app.use("/user", userRouter);
|
app.use("/user", userRouter);
|
||||||
if (config.staticServiceInfo) {
|
if (config.staticServiceInfo) {
|
||||||
@@ -138,12 +108,6 @@ async function start() {
|
|||||||
logger.info("Checking configs and external dependencies...");
|
logger.info("Checking configs and external dependencies...");
|
||||||
await assertConfigIsValid();
|
await assertConfigIsValid();
|
||||||
|
|
||||||
if (config.gatekeeperStore.startsWith("firebase")) {
|
|
||||||
logger.info("Testing Firebase connection...");
|
|
||||||
await initializeFirebase();
|
|
||||||
logger.info("Firebase connection successful.");
|
|
||||||
}
|
|
||||||
|
|
||||||
keyPool.init();
|
keyPool.init();
|
||||||
|
|
||||||
await initTokenizers();
|
await initTokenizers();
|
||||||
@@ -161,8 +125,6 @@ async function start() {
|
|||||||
await logQueue.start();
|
await logQueue.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
await initializeDatabase();
|
|
||||||
|
|
||||||
logger.info("Starting request queue...");
|
logger.info("Starting request queue...");
|
||||||
startRequestQueue();
|
startRequestQueue();
|
||||||
|
|
||||||
@@ -173,7 +135,7 @@ async function start() {
|
|||||||
app.listen(PORT, BIND_ADDRESS, () => {
|
app.listen(PORT, BIND_ADDRESS, () => {
|
||||||
logger.info(
|
logger.info(
|
||||||
{ port: PORT, interface: BIND_ADDRESS },
|
{ port: PORT, interface: BIND_ADDRESS },
|
||||||
"Server ready to accept connections."
|
"Now listening for connections."
|
||||||
);
|
);
|
||||||
registerUncaughtExceptionHandler();
|
registerUncaughtExceptionHandler();
|
||||||
});
|
});
|
||||||
@@ -184,20 +146,6 @@ async function start() {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
function cleanup() {
|
|
||||||
console.log("Shutting down...");
|
|
||||||
if (config.eventLogging) {
|
|
||||||
try {
|
|
||||||
const db = getDatabase();
|
|
||||||
db.close();
|
|
||||||
console.log("Closed sqlite database.");
|
|
||||||
} catch (error) {}
|
|
||||||
}
|
|
||||||
process.exit(0);
|
|
||||||
}
|
|
||||||
|
|
||||||
process.on("SIGINT", cleanup);
|
|
||||||
|
|
||||||
function registerUncaughtExceptionHandler() {
|
function registerUncaughtExceptionHandler() {
|
||||||
process.on("uncaughtException", (err: any) => {
|
process.on("uncaughtException", (err: any) => {
|
||||||
logger.error(
|
logger.error(
|
||||||
|
|||||||
+133
-128
@@ -2,7 +2,8 @@ import { config, listConfig } from "./config";
|
|||||||
import {
|
import {
|
||||||
AnthropicKey,
|
AnthropicKey,
|
||||||
AwsBedrockKey,
|
AwsBedrockKey,
|
||||||
GcpKey,
|
AzureOpenAIKey,
|
||||||
|
GoogleAIKey,
|
||||||
keyPool,
|
keyPool,
|
||||||
OpenAIKey,
|
OpenAIKey,
|
||||||
} from "./shared/key-management";
|
} from "./shared/key-management";
|
||||||
@@ -10,7 +11,6 @@ import {
|
|||||||
AnthropicModelFamily,
|
AnthropicModelFamily,
|
||||||
assertIsKnownModelFamily,
|
assertIsKnownModelFamily,
|
||||||
AwsBedrockModelFamily,
|
AwsBedrockModelFamily,
|
||||||
GcpModelFamily,
|
|
||||||
AzureOpenAIModelFamily,
|
AzureOpenAIModelFamily,
|
||||||
GoogleAIModelFamily,
|
GoogleAIModelFamily,
|
||||||
LLM_SERVICES,
|
LLM_SERVICES,
|
||||||
@@ -24,16 +24,22 @@ import { getCostSuffix, getTokenCostUsd, prettyTokens } from "./shared/stats";
|
|||||||
import { getUniqueIps } from "./proxy/rate-limit";
|
import { getUniqueIps } from "./proxy/rate-limit";
|
||||||
import { assertNever } from "./shared/utils";
|
import { assertNever } from "./shared/utils";
|
||||||
import { getEstimatedWaitTime, getQueueLength } from "./proxy/queue";
|
import { getEstimatedWaitTime, getQueueLength } from "./proxy/queue";
|
||||||
|
import { MistralAIKey } from "./shared/key-management/mistral-ai/provider";
|
||||||
|
|
||||||
const CACHE_TTL = 2000;
|
const CACHE_TTL = 2000;
|
||||||
|
|
||||||
type KeyPoolKey = ReturnType<typeof keyPool.list>[0];
|
type KeyPoolKey = ReturnType<typeof keyPool.list>[0];
|
||||||
const keyIsOpenAIKey = (k: KeyPoolKey): k is OpenAIKey =>
|
const keyIsOpenAIKey = (k: KeyPoolKey): k is OpenAIKey =>
|
||||||
k.service === "openai";
|
k.service === "openai";
|
||||||
|
const keyIsAzureKey = (k: KeyPoolKey): k is AzureOpenAIKey =>
|
||||||
|
k.service === "azure";
|
||||||
const keyIsAnthropicKey = (k: KeyPoolKey): k is AnthropicKey =>
|
const keyIsAnthropicKey = (k: KeyPoolKey): k is AnthropicKey =>
|
||||||
k.service === "anthropic";
|
k.service === "anthropic";
|
||||||
|
const keyIsGoogleAIKey = (k: KeyPoolKey): k is GoogleAIKey =>
|
||||||
|
k.service === "google-ai";
|
||||||
|
const keyIsMistralAIKey = (k: KeyPoolKey): k is MistralAIKey =>
|
||||||
|
k.service === "mistral-ai";
|
||||||
const keyIsAwsKey = (k: KeyPoolKey): k is AwsBedrockKey => k.service === "aws";
|
const keyIsAwsKey = (k: KeyPoolKey): k is AwsBedrockKey => k.service === "aws";
|
||||||
const keyIsGcpKey = (k: KeyPoolKey): k is GcpKey => k.service === "gcp";
|
|
||||||
|
|
||||||
/** Stats aggregated across all keys for a given service. */
|
/** Stats aggregated across all keys for a given service. */
|
||||||
type ServiceAggregate = "keys" | "uncheckedKeys" | "orgs";
|
type ServiceAggregate = "keys" | "uncheckedKeys" | "orgs";
|
||||||
@@ -45,15 +51,10 @@ type ModelAggregates = {
|
|||||||
overQuota?: number;
|
overQuota?: number;
|
||||||
pozzed?: number;
|
pozzed?: number;
|
||||||
awsLogged?: number;
|
awsLogged?: number;
|
||||||
// needed to disambugiate aws-claude family's variants
|
awsSonnet?: number;
|
||||||
awsClaude2?: number;
|
awsHaiku?: number;
|
||||||
awsSonnet3?: number;
|
|
||||||
awsSonnet3_5?: number;
|
|
||||||
awsHaiku: number;
|
|
||||||
gcpSonnet?: number;
|
|
||||||
gcpSonnet35?: number;
|
|
||||||
gcpHaiku?: number;
|
|
||||||
queued: number;
|
queued: number;
|
||||||
|
queueTime: string;
|
||||||
tokens: number;
|
tokens: number;
|
||||||
};
|
};
|
||||||
/** All possible combinations of model family and aggregate type. */
|
/** All possible combinations of model family and aggregate type. */
|
||||||
@@ -79,16 +80,13 @@ type OpenAIInfo = BaseFamilyInfo & {
|
|||||||
overQuotaKeys?: number;
|
overQuotaKeys?: number;
|
||||||
};
|
};
|
||||||
type AnthropicInfo = BaseFamilyInfo & {
|
type AnthropicInfo = BaseFamilyInfo & {
|
||||||
trialKeys?: number;
|
|
||||||
prefilledKeys?: number;
|
prefilledKeys?: number;
|
||||||
overQuotaKeys?: number;
|
overQuotaKeys?: number;
|
||||||
};
|
};
|
||||||
type AwsInfo = BaseFamilyInfo & {
|
type AwsInfo = BaseFamilyInfo & {
|
||||||
privacy?: string;
|
privacy?: string;
|
||||||
enabledVariants?: string;
|
sonnetKeys?: number;
|
||||||
};
|
haikuKeys?: number;
|
||||||
type GcpInfo = BaseFamilyInfo & {
|
|
||||||
enabledVariants?: string;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// prettier-ignore
|
// prettier-ignore
|
||||||
@@ -96,11 +94,12 @@ export type ServiceInfo = {
|
|||||||
uptime: number;
|
uptime: number;
|
||||||
endpoints: {
|
endpoints: {
|
||||||
openai?: string;
|
openai?: string;
|
||||||
|
openai2?: string;
|
||||||
anthropic?: string;
|
anthropic?: string;
|
||||||
|
"anthropic-claude-3"?: string;
|
||||||
"google-ai"?: string;
|
"google-ai"?: string;
|
||||||
"mistral-ai"?: string;
|
"mistral-ai"?: string;
|
||||||
"aws"?: string;
|
aws?: string;
|
||||||
gcp?: string;
|
|
||||||
azure?: string;
|
azure?: string;
|
||||||
"openai-image"?: string;
|
"openai-image"?: string;
|
||||||
"azure-image"?: string;
|
"azure-image"?: string;
|
||||||
@@ -114,7 +113,6 @@ export type ServiceInfo = {
|
|||||||
} & { [f in OpenAIModelFamily]?: OpenAIInfo }
|
} & { [f in OpenAIModelFamily]?: OpenAIInfo }
|
||||||
& { [f in AnthropicModelFamily]?: AnthropicInfo; }
|
& { [f in AnthropicModelFamily]?: AnthropicInfo; }
|
||||||
& { [f in AwsBedrockModelFamily]?: AwsInfo }
|
& { [f in AwsBedrockModelFamily]?: AwsInfo }
|
||||||
& { [f in GcpModelFamily]?: GcpInfo }
|
|
||||||
& { [f in AzureOpenAIModelFamily]?: BaseFamilyInfo; }
|
& { [f in AzureOpenAIModelFamily]?: BaseFamilyInfo; }
|
||||||
& { [f in GoogleAIModelFamily]?: BaseFamilyInfo }
|
& { [f in GoogleAIModelFamily]?: BaseFamilyInfo }
|
||||||
& { [f in MistralAIModelFamily]?: BaseFamilyInfo };
|
& { [f in MistralAIModelFamily]?: BaseFamilyInfo };
|
||||||
@@ -137,10 +135,13 @@ export type ServiceInfo = {
|
|||||||
const SERVICE_ENDPOINTS: { [s in LLMService]: Record<string, string> } = {
|
const SERVICE_ENDPOINTS: { [s in LLMService]: Record<string, string> } = {
|
||||||
openai: {
|
openai: {
|
||||||
openai: `%BASE%/openai`,
|
openai: `%BASE%/openai`,
|
||||||
|
openai2: `%BASE%/openai/turbo-instruct`,
|
||||||
"openai-image": `%BASE%/openai-image`,
|
"openai-image": `%BASE%/openai-image`,
|
||||||
},
|
},
|
||||||
anthropic: {
|
anthropic: {
|
||||||
anthropic: `%BASE%/anthropic`,
|
anthropic: `%BASE%/anthropic`,
|
||||||
|
"anthropic-sonnet (⚠️Temporary: for Claude 3 Sonnet)": `%BASE%/anthropic/sonnet`,
|
||||||
|
"anthropic-opus (⚠️Temporary: for Claude 3 Opus)": `%BASE%/anthropic/opus`,
|
||||||
},
|
},
|
||||||
"google-ai": {
|
"google-ai": {
|
||||||
"google-ai": `%BASE%/google-ai`,
|
"google-ai": `%BASE%/google-ai`,
|
||||||
@@ -149,11 +150,8 @@ const SERVICE_ENDPOINTS: { [s in LLMService]: Record<string, string> } = {
|
|||||||
"mistral-ai": `%BASE%/mistral-ai`,
|
"mistral-ai": `%BASE%/mistral-ai`,
|
||||||
},
|
},
|
||||||
aws: {
|
aws: {
|
||||||
"aws-claude": `%BASE%/aws/claude`,
|
aws: `%BASE%/aws/claude`,
|
||||||
"aws-mistral": `%BASE%/aws/mistral`,
|
"aws-sonnet (⚠️Temporary: for AWS Claude 3 Sonnet)": `%BASE%/aws/claude/sonnet`,
|
||||||
},
|
|
||||||
gcp: {
|
|
||||||
gcp: `%BASE%/gcp/claude`,
|
|
||||||
},
|
},
|
||||||
azure: {
|
azure: {
|
||||||
azure: `%BASE%/azure/openai`,
|
azure: `%BASE%/azure/openai`,
|
||||||
@@ -161,7 +159,7 @@ const SERVICE_ENDPOINTS: { [s in LLMService]: Record<string, string> } = {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const familyStats = new Map<ModelAggregateKey, number>();
|
const modelStats = new Map<ModelAggregateKey, number>();
|
||||||
const serviceStats = new Map<keyof AllStats, number>();
|
const serviceStats = new Map<keyof AllStats, number>();
|
||||||
|
|
||||||
let cachedInfo: ServiceInfo | undefined;
|
let cachedInfo: ServiceInfo | undefined;
|
||||||
@@ -178,7 +176,7 @@ export function buildInfo(baseUrl: string, forAdmin = false): ServiceInfo {
|
|||||||
.concat("turbo")
|
.concat("turbo")
|
||||||
);
|
);
|
||||||
|
|
||||||
familyStats.clear();
|
modelStats.clear();
|
||||||
serviceStats.clear();
|
serviceStats.clear();
|
||||||
keys.forEach(addKeyToAggregates);
|
keys.forEach(addKeyToAggregates);
|
||||||
|
|
||||||
@@ -213,8 +211,7 @@ export function buildInfo(baseUrl: string, forAdmin = false): ServiceInfo {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getStatus() {
|
function getStatus() {
|
||||||
if (!config.checkKeys)
|
if (!config.checkKeys) return "Key checking is disabled.";
|
||||||
return "Key checking is disabled. The data displayed are not reliable.";
|
|
||||||
|
|
||||||
let unchecked = 0;
|
let unchecked = 0;
|
||||||
for (const service of LLM_SERVICES) {
|
for (const service of LLM_SERVICES) {
|
||||||
@@ -297,102 +294,129 @@ function increment<T extends keyof AllStats | ModelAggregateKey>(
|
|||||||
) {
|
) {
|
||||||
map.set(key, (map.get(key) || 0) + delta);
|
map.set(key, (map.get(key) || 0) + delta);
|
||||||
}
|
}
|
||||||
const addToService = increment.bind(null, serviceStats);
|
|
||||||
const addToFamily = increment.bind(null, familyStats);
|
|
||||||
|
|
||||||
function addKeyToAggregates(k: KeyPoolKey) {
|
function addKeyToAggregates(k: KeyPoolKey) {
|
||||||
addToService("proompts", k.promptCount);
|
increment(serviceStats, "proompts", k.promptCount);
|
||||||
addToService("openai__keys", k.service === "openai" ? 1 : 0);
|
increment(serviceStats, "openai__keys", k.service === "openai" ? 1 : 0);
|
||||||
addToService("anthropic__keys", k.service === "anthropic" ? 1 : 0);
|
increment(serviceStats, "anthropic__keys", k.service === "anthropic" ? 1 : 0);
|
||||||
addToService("google-ai__keys", k.service === "google-ai" ? 1 : 0);
|
increment(serviceStats, "google-ai__keys", k.service === "google-ai" ? 1 : 0);
|
||||||
addToService("mistral-ai__keys", k.service === "mistral-ai" ? 1 : 0);
|
increment(
|
||||||
addToService("aws__keys", k.service === "aws" ? 1 : 0);
|
serviceStats,
|
||||||
addToService("gcp__keys", k.service === "gcp" ? 1 : 0);
|
"mistral-ai__keys",
|
||||||
addToService("azure__keys", k.service === "azure" ? 1 : 0);
|
k.service === "mistral-ai" ? 1 : 0
|
||||||
|
);
|
||||||
|
increment(serviceStats, "aws__keys", k.service === "aws" ? 1 : 0);
|
||||||
|
increment(serviceStats, "azure__keys", k.service === "azure" ? 1 : 0);
|
||||||
|
|
||||||
let sumTokens = 0;
|
let sumTokens = 0;
|
||||||
let sumCost = 0;
|
let sumCost = 0;
|
||||||
|
|
||||||
const incrementGenericFamilyStats = (f: ModelFamily) => {
|
|
||||||
const tokens = (k as any)[`${f}Tokens`];
|
|
||||||
sumTokens += tokens;
|
|
||||||
sumCost += getTokenCostUsd(f, tokens);
|
|
||||||
addToFamily(`${f}__tokens`, tokens);
|
|
||||||
addToFamily(`${f}__revoked`, k.isRevoked ? 1 : 0);
|
|
||||||
addToFamily(`${f}__active`, k.isDisabled ? 0 : 1);
|
|
||||||
};
|
|
||||||
|
|
||||||
switch (k.service) {
|
switch (k.service) {
|
||||||
case "openai":
|
case "openai":
|
||||||
if (!keyIsOpenAIKey(k)) throw new Error("Invalid key type");
|
if (!keyIsOpenAIKey(k)) throw new Error("Invalid key type");
|
||||||
addToService("openai__uncheckedKeys", Boolean(k.lastChecked) ? 0 : 1);
|
increment(
|
||||||
k.modelFamilies.forEach((f) => {
|
serviceStats,
|
||||||
incrementGenericFamilyStats(f);
|
"openai__uncheckedKeys",
|
||||||
addToFamily(`${f}__trial`, k.isTrial ? 1 : 0);
|
Boolean(k.lastChecked) ? 0 : 1
|
||||||
addToFamily(`${f}__overQuota`, k.isOverQuota ? 1 : 0);
|
);
|
||||||
});
|
|
||||||
break;
|
|
||||||
case "anthropic":
|
|
||||||
if (!keyIsAnthropicKey(k)) throw new Error("Invalid key type");
|
|
||||||
addToService("anthropic__uncheckedKeys", Boolean(k.lastChecked) ? 0 : 1);
|
|
||||||
k.modelFamilies.forEach((f) => {
|
|
||||||
incrementGenericFamilyStats(f);
|
|
||||||
addToFamily(`${f}__trial`, k.tier === "free" ? 1 : 0);
|
|
||||||
addToFamily(`${f}__overQuota`, k.isOverQuota ? 1 : 0);
|
|
||||||
addToFamily(`${f}__pozzed`, k.isPozzed ? 1 : 0);
|
|
||||||
});
|
|
||||||
break;
|
|
||||||
|
|
||||||
|
k.modelFamilies.forEach((f) => {
|
||||||
|
const tokens = k[`${f}Tokens`];
|
||||||
|
sumTokens += tokens;
|
||||||
|
sumCost += getTokenCostUsd(f, tokens);
|
||||||
|
increment(modelStats, `${f}__tokens`, tokens);
|
||||||
|
increment(modelStats, `${f}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
|
increment(modelStats, `${f}__active`, k.isDisabled ? 0 : 1);
|
||||||
|
increment(modelStats, `${f}__trial`, k.isTrial ? 1 : 0);
|
||||||
|
increment(modelStats, `${f}__overQuota`, k.isOverQuota ? 1 : 0);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "azure":
|
||||||
|
if (!keyIsAzureKey(k)) throw new Error("Invalid key type");
|
||||||
|
k.modelFamilies.forEach((f) => {
|
||||||
|
const tokens = k[`${f}Tokens`];
|
||||||
|
sumTokens += tokens;
|
||||||
|
sumCost += getTokenCostUsd(f, tokens);
|
||||||
|
increment(modelStats, `${f}__tokens`, tokens);
|
||||||
|
increment(modelStats, `${f}__active`, k.isDisabled ? 0 : 1);
|
||||||
|
increment(modelStats, `${f}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
case "anthropic": {
|
||||||
|
if (!keyIsAnthropicKey(k)) throw new Error("Invalid key type");
|
||||||
|
k.modelFamilies.forEach((f) => {
|
||||||
|
const tokens = k[`${f}Tokens`];
|
||||||
|
sumTokens += tokens;
|
||||||
|
sumCost += getTokenCostUsd(f, tokens);
|
||||||
|
increment(modelStats, `${f}__tokens`, tokens);
|
||||||
|
increment(modelStats, `${f}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
|
increment(modelStats, `${f}__active`, k.isDisabled ? 0 : 1);
|
||||||
|
increment(modelStats, `${f}__overQuota`, k.isOverQuota ? 1 : 0);
|
||||||
|
increment(modelStats, `${f}__pozzed`, k.isPozzed ? 1 : 0);
|
||||||
|
});
|
||||||
|
increment(
|
||||||
|
serviceStats,
|
||||||
|
"anthropic__uncheckedKeys",
|
||||||
|
Boolean(k.lastChecked) ? 0 : 1
|
||||||
|
);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case "google-ai": {
|
||||||
|
if (!keyIsGoogleAIKey(k)) throw new Error("Invalid key type");
|
||||||
|
const family = "gemini-pro";
|
||||||
|
sumTokens += k["gemini-proTokens"];
|
||||||
|
sumCost += getTokenCostUsd(family, k["gemini-proTokens"]);
|
||||||
|
increment(modelStats, `${family}__active`, k.isDisabled ? 0 : 1);
|
||||||
|
increment(modelStats, `${family}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
|
increment(modelStats, `${family}__tokens`, k["gemini-proTokens"]);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case "mistral-ai": {
|
||||||
|
if (!keyIsMistralAIKey(k)) throw new Error("Invalid key type");
|
||||||
|
k.modelFamilies.forEach((f) => {
|
||||||
|
const tokens = k[`${f}Tokens`];
|
||||||
|
sumTokens += tokens;
|
||||||
|
sumCost += getTokenCostUsd(f, tokens);
|
||||||
|
increment(modelStats, `${f}__tokens`, tokens);
|
||||||
|
increment(modelStats, `${f}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
|
increment(modelStats, `${f}__active`, k.isDisabled ? 0 : 1);
|
||||||
|
});
|
||||||
|
break;
|
||||||
|
}
|
||||||
case "aws": {
|
case "aws": {
|
||||||
if (!keyIsAwsKey(k)) throw new Error("Invalid key type");
|
if (!keyIsAwsKey(k)) throw new Error("Invalid key type");
|
||||||
k.modelFamilies.forEach(incrementGenericFamilyStats);
|
const family = "aws-claude";
|
||||||
if (!k.isDisabled) {
|
sumTokens += k["aws-claudeTokens"];
|
||||||
// Don't add revoked keys to available AWS variants
|
sumCost += getTokenCostUsd(family, k["aws-claudeTokens"]);
|
||||||
k.modelIds.forEach((id) => {
|
increment(modelStats, `${family}__active`, k.isDisabled ? 0 : 1);
|
||||||
if (id.includes("claude-3-sonnet")) {
|
increment(modelStats, `${family}__revoked`, k.isRevoked ? 1 : 0);
|
||||||
addToFamily(`aws-claude__awsSonnet3`, 1);
|
increment(modelStats, `${family}__tokens`, k["aws-claudeTokens"]);
|
||||||
} else if (id.includes("claude-3-5-sonnet")) {
|
increment(modelStats, `${family}__awsSonnet`, k.sonnetEnabled ? 1 : 0);
|
||||||
addToFamily(`aws-claude__awsSonnet3_5`, 1);
|
increment(modelStats, `${family}__awsHaiku`, k.haikuEnabled ? 1 : 0);
|
||||||
} else if (id.includes("claude-3-haiku")) {
|
|
||||||
addToFamily(`aws-claude__awsHaiku`, 1);
|
|
||||||
} else if (id.includes("claude-v2")) {
|
|
||||||
addToFamily(`aws-claude__awsClaude2`, 1);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
// Ignore revoked keys for aws logging stats, but include keys where the
|
// Ignore revoked keys for aws logging stats, but include keys where the
|
||||||
// logging status is unknown.
|
// logging status is unknown.
|
||||||
const countAsLogged =
|
const countAsLogged =
|
||||||
k.lastChecked && !k.isDisabled && k.awsLoggingStatus === "enabled";
|
k.lastChecked && !k.isDisabled && k.awsLoggingStatus !== "disabled";
|
||||||
addToFamily(`aws-claude__awsLogged`, countAsLogged ? 1 : 0);
|
increment(modelStats, `${family}__awsLogged`, countAsLogged ? 1 : 0);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case "gcp":
|
|
||||||
if (!keyIsGcpKey(k)) throw new Error("Invalid key type");
|
|
||||||
k.modelFamilies.forEach(incrementGenericFamilyStats);
|
|
||||||
// TODO: add modelIds to GcpKey
|
|
||||||
break;
|
|
||||||
// These services don't have any additional stats to track.
|
|
||||||
case "azure":
|
|
||||||
case "google-ai":
|
|
||||||
case "mistral-ai":
|
|
||||||
k.modelFamilies.forEach(incrementGenericFamilyStats);
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
assertNever(k.service);
|
assertNever(k.service);
|
||||||
}
|
}
|
||||||
|
|
||||||
addToService("tokens", sumTokens);
|
increment(serviceStats, "tokens", sumTokens);
|
||||||
addToService("tokenCost", sumCost);
|
increment(serviceStats, "tokenCost", sumCost);
|
||||||
}
|
}
|
||||||
|
|
||||||
function getInfoForFamily(family: ModelFamily): BaseFamilyInfo {
|
function getInfoForFamily(family: ModelFamily): BaseFamilyInfo {
|
||||||
const tokens = familyStats.get(`${family}__tokens`) || 0;
|
const tokens = modelStats.get(`${family}__tokens`) || 0;
|
||||||
const cost = getTokenCostUsd(family, tokens);
|
const cost = getTokenCostUsd(family, tokens);
|
||||||
let info: BaseFamilyInfo & OpenAIInfo & AnthropicInfo & AwsInfo & GcpInfo = {
|
let info: BaseFamilyInfo & OpenAIInfo & AnthropicInfo & AwsInfo = {
|
||||||
usage: `${prettyTokens(tokens)} tokens${getCostSuffix(cost)}`,
|
usage: `${prettyTokens(tokens)} tokens${getCostSuffix(cost)}`,
|
||||||
activeKeys: familyStats.get(`${family}__active`) || 0,
|
activeKeys: modelStats.get(`${family}__active`) || 0,
|
||||||
revokedKeys: familyStats.get(`${family}__revoked`) || 0,
|
revokedKeys: modelStats.get(`${family}__revoked`) || 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
// Add service-specific stats to the info object.
|
// Add service-specific stats to the info object.
|
||||||
@@ -400,8 +424,8 @@ function getInfoForFamily(family: ModelFamily): BaseFamilyInfo {
|
|||||||
const service = MODEL_FAMILY_SERVICE[family];
|
const service = MODEL_FAMILY_SERVICE[family];
|
||||||
switch (service) {
|
switch (service) {
|
||||||
case "openai":
|
case "openai":
|
||||||
info.overQuotaKeys = familyStats.get(`${family}__overQuota`) || 0;
|
info.overQuotaKeys = modelStats.get(`${family}__overQuota`) || 0;
|
||||||
info.trialKeys = familyStats.get(`${family}__trial`) || 0;
|
info.trialKeys = modelStats.get(`${family}__trial`) || 0;
|
||||||
|
|
||||||
// Delete trial/revoked keys for non-turbo families.
|
// Delete trial/revoked keys for non-turbo families.
|
||||||
// Trials are turbo 99% of the time, and if a key is invalid we don't
|
// Trials are turbo 99% of the time, and if a key is invalid we don't
|
||||||
@@ -412,36 +436,17 @@ function getInfoForFamily(family: ModelFamily): BaseFamilyInfo {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case "anthropic":
|
case "anthropic":
|
||||||
info.overQuotaKeys = familyStats.get(`${family}__overQuota`) || 0;
|
info.overQuotaKeys = modelStats.get(`${family}__overQuota`) || 0;
|
||||||
info.trialKeys = familyStats.get(`${family}__trial`) || 0;
|
info.prefilledKeys = modelStats.get(`${family}__pozzed`) || 0;
|
||||||
info.prefilledKeys = familyStats.get(`${family}__pozzed`) || 0;
|
|
||||||
break;
|
break;
|
||||||
case "aws":
|
case "aws":
|
||||||
if (family === "aws-claude") {
|
info.sonnetKeys = modelStats.get(`${family}__awsSonnet`) || 0;
|
||||||
const logged = familyStats.get(`${family}__awsLogged`) || 0;
|
info.haikuKeys = modelStats.get(`${family}__awsHaiku`) || 0;
|
||||||
const variants = new Set<string>();
|
const logged = modelStats.get(`${family}__awsLogged`) || 0;
|
||||||
if (familyStats.get(`${family}__awsClaude2`) || 0)
|
if (logged > 0) {
|
||||||
variants.add("claude2");
|
info.privacy = config.allowAwsLogging
|
||||||
if (familyStats.get(`${family}__awsSonnet3`) || 0)
|
? `${logged} active keys are potentially logged.`
|
||||||
variants.add("sonnet3");
|
: `${logged} active keys are potentially logged and can't be used. Set ALLOW_AWS_LOGGING=true to override.`;
|
||||||
if (familyStats.get(`${family}__awsSonnet3_5`) || 0)
|
|
||||||
variants.add("sonnet3.5");
|
|
||||||
if (familyStats.get(`${family}__awsHaiku`) || 0)
|
|
||||||
variants.add("haiku");
|
|
||||||
info.enabledVariants = variants.size
|
|
||||||
? `${Array.from(variants).join(",")}`
|
|
||||||
: undefined;
|
|
||||||
if (logged > 0) {
|
|
||||||
info.privacy = config.allowAwsLogging
|
|
||||||
? `AWS logging verification inactive. Prompts could be logged.`
|
|
||||||
: `${logged} active keys are potentially logged and can't be used. Set ALLOW_AWS_LOGGING=true to override.`;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case "gcp":
|
|
||||||
if (family === "gcp-claude") {
|
|
||||||
// TODO: implement
|
|
||||||
info.enabledVariants = "not implemented";
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,68 +0,0 @@
|
|||||||
import type { Request } from "express";
|
|
||||||
import { z } from "zod";
|
|
||||||
import { APIFormat } from "../key-management";
|
|
||||||
import {
|
|
||||||
AnthropicV1TextSchema,
|
|
||||||
AnthropicV1MessagesSchema,
|
|
||||||
transformAnthropicTextToAnthropicChat,
|
|
||||||
transformOpenAIToAnthropicText,
|
|
||||||
transformOpenAIToAnthropicChat,
|
|
||||||
} from "./anthropic";
|
|
||||||
import { OpenAIV1ChatCompletionSchema } from "./openai";
|
|
||||||
import {
|
|
||||||
OpenAIV1TextCompletionSchema,
|
|
||||||
transformOpenAIToOpenAIText,
|
|
||||||
} from "./openai-text";
|
|
||||||
import {
|
|
||||||
OpenAIV1ImagesGenerationSchema,
|
|
||||||
transformOpenAIToOpenAIImage,
|
|
||||||
} from "./openai-image";
|
|
||||||
import {
|
|
||||||
GoogleAIV1GenerateContentSchema,
|
|
||||||
transformOpenAIToGoogleAI,
|
|
||||||
} from "./google-ai";
|
|
||||||
import {
|
|
||||||
MistralAIV1ChatCompletionsSchema,
|
|
||||||
MistralAIV1TextCompletionsSchema,
|
|
||||||
transformMistralChatToText,
|
|
||||||
} from "./mistral-ai";
|
|
||||||
|
|
||||||
export { OpenAIChatMessage } from "./openai";
|
|
||||||
export {
|
|
||||||
AnthropicChatMessage,
|
|
||||||
AnthropicV1TextSchema,
|
|
||||||
AnthropicV1MessagesSchema,
|
|
||||||
flattenAnthropicMessages,
|
|
||||||
} from "./anthropic";
|
|
||||||
export { GoogleAIChatMessage } from "./google-ai";
|
|
||||||
export { MistralAIChatMessage } from "./mistral-ai";
|
|
||||||
|
|
||||||
type APIPair = `${APIFormat}->${APIFormat}`;
|
|
||||||
type TransformerMap = {
|
|
||||||
[key in APIPair]?: APIFormatTransformer<any>;
|
|
||||||
};
|
|
||||||
|
|
||||||
export type APIFormatTransformer<Z extends z.ZodType<any, any>> = (
|
|
||||||
req: Request
|
|
||||||
) => Promise<z.infer<Z>>;
|
|
||||||
|
|
||||||
export const API_REQUEST_TRANSFORMERS: TransformerMap = {
|
|
||||||
"anthropic-text->anthropic-chat": transformAnthropicTextToAnthropicChat,
|
|
||||||
"openai->anthropic-chat": transformOpenAIToAnthropicChat,
|
|
||||||
"openai->anthropic-text": transformOpenAIToAnthropicText,
|
|
||||||
"openai->openai-text": transformOpenAIToOpenAIText,
|
|
||||||
"openai->openai-image": transformOpenAIToOpenAIImage,
|
|
||||||
"openai->google-ai": transformOpenAIToGoogleAI,
|
|
||||||
"mistral-ai->mistral-text": transformMistralChatToText,
|
|
||||||
};
|
|
||||||
|
|
||||||
export const API_REQUEST_VALIDATORS: Record<APIFormat, z.ZodSchema<any>> = {
|
|
||||||
"anthropic-chat": AnthropicV1MessagesSchema,
|
|
||||||
"anthropic-text": AnthropicV1TextSchema,
|
|
||||||
openai: OpenAIV1ChatCompletionSchema,
|
|
||||||
"openai-text": OpenAIV1TextCompletionSchema,
|
|
||||||
"openai-image": OpenAIV1ImagesGenerationSchema,
|
|
||||||
"google-ai": GoogleAIV1GenerateContentSchema,
|
|
||||||
"mistral-ai": MistralAIV1ChatCompletionsSchema,
|
|
||||||
"mistral-text": MistralAIV1TextCompletionsSchema,
|
|
||||||
};
|
|
||||||
@@ -1,166 +0,0 @@
|
|||||||
import { z } from "zod";
|
|
||||||
import { OPENAI_OUTPUT_MAX } from "./openai";
|
|
||||||
import { Template } from "@huggingface/jinja";
|
|
||||||
import { APIFormatTransformer } from "./index";
|
|
||||||
import { logger } from "../../logger";
|
|
||||||
|
|
||||||
const MistralChatMessageSchema = z.object({
|
|
||||||
role: z.enum(["system", "user", "assistant", "tool"]), // TODO: implement tools
|
|
||||||
content: z.string(),
|
|
||||||
prefix: z.boolean().optional(),
|
|
||||||
});
|
|
||||||
|
|
||||||
const MistralMessagesSchema = z.array(MistralChatMessageSchema).refine(
|
|
||||||
(input) => {
|
|
||||||
const prefixIdx = input.findIndex((msg) => Boolean(msg.prefix));
|
|
||||||
if (prefixIdx === -1) return true; // no prefix messages
|
|
||||||
const lastIdx = input.length - 1;
|
|
||||||
const lastMsg = input[lastIdx];
|
|
||||||
return prefixIdx === lastIdx && lastMsg.role === "assistant";
|
|
||||||
},
|
|
||||||
{
|
|
||||||
message:
|
|
||||||
"`prefix` can only be set to `true` on the last message, and only for an assistant message.",
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
// https://docs.mistral.ai/api#operation/createChatCompletion
|
|
||||||
const BaseMistralAIV1CompletionsSchema = z.object({
|
|
||||||
model: z.string(),
|
|
||||||
messages: MistralMessagesSchema.optional(),
|
|
||||||
prompt: z.string().optional(),
|
|
||||||
temperature: z.number().optional().default(0.7),
|
|
||||||
top_p: z.number().optional().default(1),
|
|
||||||
max_tokens: z.coerce
|
|
||||||
.number()
|
|
||||||
.int()
|
|
||||||
.nullish()
|
|
||||||
.transform((v) => Math.min(v ?? OPENAI_OUTPUT_MAX, OPENAI_OUTPUT_MAX)),
|
|
||||||
stream: z.boolean().optional().default(false),
|
|
||||||
// Mistral docs say that `stop` can be a string or array but AWS Mistral
|
|
||||||
// blows up if a string is passed. We must convert it to an array.
|
|
||||||
stop: z
|
|
||||||
.union([z.string(), z.array(z.string())])
|
|
||||||
.optional()
|
|
||||||
.default([])
|
|
||||||
.transform((v) => (Array.isArray(v) ? v : [v])),
|
|
||||||
random_seed: z.number().int().min(0).optional(),
|
|
||||||
response_format: z
|
|
||||||
.object({ type: z.enum(["text", "json_object"]) })
|
|
||||||
.optional(),
|
|
||||||
safe_prompt: z.boolean().optional().default(false),
|
|
||||||
});
|
|
||||||
|
|
||||||
export const MistralAIV1ChatCompletionsSchema =
|
|
||||||
BaseMistralAIV1CompletionsSchema.and(
|
|
||||||
z.object({ messages: MistralMessagesSchema })
|
|
||||||
);
|
|
||||||
export const MistralAIV1TextCompletionsSchema =
|
|
||||||
BaseMistralAIV1CompletionsSchema.and(z.object({ prompt: z.string() }));
|
|
||||||
|
|
||||||
/*
|
|
||||||
Slightly more strict version that only allows a subset of the parameters. AWS
|
|
||||||
Mistral helpfully returns no details if unsupported parameters are passed so
|
|
||||||
this list comes from trial and error as of 2024-08-12.
|
|
||||||
*/
|
|
||||||
const BaseAWSMistralAIV1CompletionsSchema =
|
|
||||||
BaseMistralAIV1CompletionsSchema.pick({
|
|
||||||
temperature: true,
|
|
||||||
top_p: true,
|
|
||||||
max_tokens: true,
|
|
||||||
stop: true,
|
|
||||||
random_seed: true,
|
|
||||||
// response_format: true,
|
|
||||||
// safe_prompt: true,
|
|
||||||
}).strip();
|
|
||||||
export const AWSMistralV1ChatCompletionsSchema =
|
|
||||||
BaseAWSMistralAIV1CompletionsSchema.and(
|
|
||||||
z.object({ messages: MistralMessagesSchema })
|
|
||||||
);
|
|
||||||
export const AWSMistralV1TextCompletionsSchema =
|
|
||||||
BaseAWSMistralAIV1CompletionsSchema.and(z.object({ prompt: z.string() }));
|
|
||||||
|
|
||||||
export type MistralAIChatMessage = z.infer<typeof MistralChatMessageSchema>;
|
|
||||||
|
|
||||||
export function fixMistralPrompt(
|
|
||||||
messages: MistralAIChatMessage[]
|
|
||||||
): MistralAIChatMessage[] {
|
|
||||||
// Mistral uses OpenAI format but has some additional requirements:
|
|
||||||
// - Only one system message per request, and it must be the first message if
|
|
||||||
// present.
|
|
||||||
// - Final message must be a user message, unless it has `prefix: true`.
|
|
||||||
// - Cannot have multiple messages from the same role in a row.
|
|
||||||
// While frontends should be able to handle this, we can fix it here in the
|
|
||||||
// meantime.
|
|
||||||
const fixed = messages.reduce<MistralAIChatMessage[]>((acc, msg) => {
|
|
||||||
if (acc.length === 0) {
|
|
||||||
acc.push(msg);
|
|
||||||
return acc;
|
|
||||||
}
|
|
||||||
|
|
||||||
const copy = { ...msg };
|
|
||||||
// Reattribute subsequent system messages to the user
|
|
||||||
if (msg.role === "system") {
|
|
||||||
copy.role = "user";
|
|
||||||
}
|
|
||||||
|
|
||||||
// Consolidate multiple messages from the same role
|
|
||||||
const last = acc[acc.length - 1];
|
|
||||||
if (last.role === copy.role) {
|
|
||||||
last.content += "\n\n" + copy.content;
|
|
||||||
} else {
|
|
||||||
acc.push(copy);
|
|
||||||
}
|
|
||||||
return acc;
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
// If the last message is an assistant message, mark it as a prefix. An
|
|
||||||
// assistant message at the end of the conversation without `prefix: true`
|
|
||||||
// results in an error.
|
|
||||||
if (fixed[fixed.length - 1].role === "assistant") {
|
|
||||||
fixed[fixed.length - 1].prefix = true;
|
|
||||||
}
|
|
||||||
return fixed;
|
|
||||||
}
|
|
||||||
|
|
||||||
let jinjaTemplate: Template;
|
|
||||||
let renderTemplate: (messages: MistralAIChatMessage[]) => string;
|
|
||||||
function renderMistralPrompt(messages: MistralAIChatMessage[]) {
|
|
||||||
if (!jinjaTemplate) {
|
|
||||||
logger.warn("Lazy loading mistral chat template...");
|
|
||||||
const { chatTemplate, bosToken, eosToken } =
|
|
||||||
require("./templates/mistral-template").MISTRAL_TEMPLATE;
|
|
||||||
jinjaTemplate = new Template(chatTemplate);
|
|
||||||
renderTemplate = (messages) =>
|
|
||||||
jinjaTemplate.render({
|
|
||||||
messages,
|
|
||||||
bos_token: bosToken,
|
|
||||||
eos_token: eosToken,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
return renderTemplate(messages);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Attempts to convert a Mistral chat completions request to a text completions,
|
|
||||||
* using the official prompt template published by Mistral.
|
|
||||||
*/
|
|
||||||
export const transformMistralChatToText: APIFormatTransformer<
|
|
||||||
typeof MistralAIV1TextCompletionsSchema
|
|
||||||
> = async (req) => {
|
|
||||||
const { body } = req;
|
|
||||||
const result = MistralAIV1ChatCompletionsSchema.safeParse(body);
|
|
||||||
if (!result.success) {
|
|
||||||
req.log.warn(
|
|
||||||
{ issues: result.error.issues, body },
|
|
||||||
"Invalid Mistral chat completions request"
|
|
||||||
);
|
|
||||||
throw result.error;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { messages, ...rest } = result.data;
|
|
||||||
const prompt = renderMistralPrompt(messages);
|
|
||||||
|
|
||||||
return { ...rest, prompt, messages: undefined };
|
|
||||||
};
|
|
||||||
@@ -1,58 +0,0 @@
|
|||||||
import { z } from "zod";
|
|
||||||
import {
|
|
||||||
flattenOpenAIChatMessages,
|
|
||||||
OpenAIV1ChatCompletionSchema,
|
|
||||||
} from "./openai";
|
|
||||||
import { APIFormatTransformer } from "./index";
|
|
||||||
|
|
||||||
export const OpenAIV1TextCompletionSchema = z
|
|
||||||
.object({
|
|
||||||
model: z
|
|
||||||
.string()
|
|
||||||
.max(100)
|
|
||||||
.regex(
|
|
||||||
/^gpt-3.5-turbo-instruct/,
|
|
||||||
"Model must start with 'gpt-3.5-turbo-instruct'"
|
|
||||||
),
|
|
||||||
prompt: z.string({
|
|
||||||
required_error:
|
|
||||||
"No `prompt` found. Ensure you've set the correct completion endpoint.",
|
|
||||||
}),
|
|
||||||
logprobs: z.number().int().nullish().default(null),
|
|
||||||
echo: z.boolean().optional().default(false),
|
|
||||||
best_of: z.literal(1).optional(),
|
|
||||||
stop: z
|
|
||||||
.union([z.string().max(500), z.array(z.string().max(500)).max(4)])
|
|
||||||
.optional(),
|
|
||||||
suffix: z.string().max(1000).optional(),
|
|
||||||
})
|
|
||||||
.strip()
|
|
||||||
.merge(OpenAIV1ChatCompletionSchema.omit({ messages: true, logprobs: true }));
|
|
||||||
|
|
||||||
export const transformOpenAIToOpenAIText: APIFormatTransformer<
|
|
||||||
typeof OpenAIV1TextCompletionSchema
|
|
||||||
> = async (req) => {
|
|
||||||
const { body } = req;
|
|
||||||
const result = OpenAIV1ChatCompletionSchema.safeParse(body);
|
|
||||||
if (!result.success) {
|
|
||||||
req.log.warn(
|
|
||||||
{ issues: result.error.issues, body },
|
|
||||||
"Invalid OpenAI-to-OpenAI-text request"
|
|
||||||
);
|
|
||||||
throw result.error;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { messages, ...rest } = result.data;
|
|
||||||
const prompt = flattenOpenAIChatMessages(messages);
|
|
||||||
|
|
||||||
let stops = rest.stop
|
|
||||||
? Array.isArray(rest.stop)
|
|
||||||
? rest.stop
|
|
||||||
: [rest.stop]
|
|
||||||
: [];
|
|
||||||
stops.push("\n\nUser:");
|
|
||||||
stops = [...new Set(stops)];
|
|
||||||
|
|
||||||
const transformed = { ...rest, prompt: prompt, stop: stops };
|
|
||||||
return OpenAIV1TextCompletionSchema.parse(transformed);
|
|
||||||
};
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user