Adds the "OpenAI" provider to the list of available OpenAI API providers, enabling users to connect to and use their own OpenAI API keys. This change expands the flexibility of the application, allowing users to leverage the power of OpenAI models directly without relying solely on the provided provider.
20 lines
571 B
TypeScript
20 lines
571 B
TypeScript
import option from "@/assets/locale/fa/option.json"
|
|
import playground from "@/assets/locale/fa/playground.json"
|
|
import common from "@/assets/locale/fa/common.json"
|
|
import sidepanel from "@/assets/locale/fa/sidepanel.json"
|
|
import settings from "@/assets/locale/fa/settings.json"
|
|
import knowledge from "@/assets/locale/fa/knowledge.json"
|
|
import chrome from "@/assets/locale/fa/chrome.json"
|
|
import openai from "@/assets/locale/fa/openai.json";
|
|
|
|
export const fa = {
|
|
option,
|
|
playground,
|
|
common,
|
|
sidepanel,
|
|
settings,
|
|
knowledge,
|
|
chrome,
|
|
openai
|
|
}
|