We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In src/main/java/com/epam/aidial/core/controller/ControllerSelector.java there are naming regexes for models, deployments, etc. e.g.:
src/main/java/com/epam/aidial/core/controller/ControllerSelector.java
private static final Pattern PATTERN_DEPLOYMENT = Pattern.compile("/+openai/deployments/([-.@a-zA-Z0-9]+)"); private static final Pattern PATTERN_MODEL = Pattern.compile("/+openai/models/([-.@a-zA-Z0-9]+)"); private static final Pattern PATTERN_ADDON = Pattern.compile("/+openai/addons/([-.@a-zA-Z0-9]+)"); private static final Pattern PATTERN_ASSISTANT = Pattern.compile("/+openai/assistants/([-.@a-zA-Z0-9]+)"); private static final Pattern PATTERN_APPLICATION = Pattern.compile("/+openai/applications/([-.@a-zA-Z0-9]+)");
This implements special constraints on how models, deployments, assistants, and applications should be named. However, there is no
The text was updated successfully, but these errors were encountered:
Fixed in #200. Now deployments with any characters are supported. Given that, one needs to encode reserved characters in HTTP path.
Sorry, something went wrong.
artsiomkorzun
No branches or pull requests
In
src/main/java/com/epam/aidial/core/controller/ControllerSelector.java
there are naming regexes for models, deployments, etc. e.g.:This implements special constraints on how models, deployments, assistants, and applications should be named. However, there is no
The text was updated successfully, but these errors were encountered: