runspec-chat 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. runspec_chat-0.1.0/.chainlit/config.toml +178 -0
  2. runspec_chat-0.1.0/.chainlit/translations/ar-SA.json +259 -0
  3. runspec_chat-0.1.0/.chainlit/translations/bn.json +260 -0
  4. runspec_chat-0.1.0/.chainlit/translations/da-DK.json +259 -0
  5. runspec_chat-0.1.0/.chainlit/translations/de-DE.json +254 -0
  6. runspec_chat-0.1.0/.chainlit/translations/el-GR.json +260 -0
  7. runspec_chat-0.1.0/.chainlit/translations/en-US.json +260 -0
  8. runspec_chat-0.1.0/.chainlit/translations/es.json +260 -0
  9. runspec_chat-0.1.0/.chainlit/translations/fr-FR.json +260 -0
  10. runspec_chat-0.1.0/.chainlit/translations/gu.json +260 -0
  11. runspec_chat-0.1.0/.chainlit/translations/he-IL.json +260 -0
  12. runspec_chat-0.1.0/.chainlit/translations/hi.json +260 -0
  13. runspec_chat-0.1.0/.chainlit/translations/it.json +254 -0
  14. runspec_chat-0.1.0/.chainlit/translations/ja.json +259 -0
  15. runspec_chat-0.1.0/.chainlit/translations/kn.json +260 -0
  16. runspec_chat-0.1.0/.chainlit/translations/ko.json +254 -0
  17. runspec_chat-0.1.0/.chainlit/translations/ml.json +260 -0
  18. runspec_chat-0.1.0/.chainlit/translations/mr.json +260 -0
  19. runspec_chat-0.1.0/.chainlit/translations/nl.json +260 -0
  20. runspec_chat-0.1.0/.chainlit/translations/pt-PT.json +260 -0
  21. runspec_chat-0.1.0/.chainlit/translations/ta.json +260 -0
  22. runspec_chat-0.1.0/.chainlit/translations/te.json +260 -0
  23. runspec_chat-0.1.0/.chainlit/translations/zh-CN.json +260 -0
  24. runspec_chat-0.1.0/.chainlit/translations/zh-TW.json +260 -0
  25. runspec_chat-0.1.0/.env.example +4 -0
  26. runspec_chat-0.1.0/.gitignore +8 -0
  27. runspec_chat-0.1.0/CHANGELOG.md +26 -0
  28. runspec_chat-0.1.0/PKG-INFO +15 -0
  29. runspec_chat-0.1.0/chainlit.md +130 -0
  30. runspec_chat-0.1.0/hosts.toml.example +23 -0
  31. runspec_chat-0.1.0/pyproject.toml +26 -0
  32. runspec_chat-0.1.0/runspec_chat/__init__.py +3 -0
  33. runspec_chat-0.1.0/runspec_chat/adapter.py +30 -0
  34. runspec_chat-0.1.0/runspec_chat/adapters/__init__.py +0 -0
  35. runspec_chat-0.1.0/runspec_chat/adapters/anthropic_direct.py +70 -0
  36. runspec_chat-0.1.0/runspec_chat/app.py +468 -0
  37. runspec_chat-0.1.0/runspec_chat/chat.py +82 -0
  38. runspec_chat-0.1.0/runspec_chat/runspec.toml +39 -0
  39. runspec_chat-0.1.0/runspec_chat/setup_keys.py +87 -0
@@ -0,0 +1,178 @@
1
+ [project]
2
+ # List of environment variables to be provided by each user to use the app.
3
+ user_env = ["ANTHROPIC_API_KEY", "SSH_PASS"]
4
+
5
+ # Duration (in seconds) during which the session is saved when the connection is lost
6
+ session_timeout = 3600
7
+
8
+ # Duration (in seconds) of the user session expiry
9
+ user_session_timeout = 1296000 # 15 days
10
+
11
+ # Enable third parties caching (e.g., LangChain cache)
12
+ cache = false
13
+
14
+ # Whether to persist user environment variables (API keys) to the database
15
+ # Set to true to store user env vars in DB, false to exclude them for security
16
+ persist_user_env = false
17
+
18
+ # Whether to mask user environment variables (API keys) in the UI with password type
19
+ # Set to true to show API keys as ***, false to show them as plain text
20
+ mask_user_env = true
21
+
22
+ # Authorized origins
23
+ allow_origins = ["*"]
24
+
25
+ [features]
26
+ # Process and display HTML in messages. This can be a security risk (see https://stackoverflow.com/questions/19603097/why-is-it-dangerous-to-render-user-generated-html-or-javascript)
27
+ unsafe_allow_html = false
28
+
29
+ # Process and display mathematical expressions. This can clash with "$" characters in messages.
30
+ latex = false
31
+
32
+ # Enable rendering of user messages markdown
33
+ user_message_markdown = true
34
+
35
+ # Autoscroll new user messages at the top of the window
36
+ user_message_autoscroll = true
37
+
38
+ # Autoscroll new assistant messages
39
+ assistant_message_autoscroll = true
40
+
41
+ # Automatically tag threads with the current chat profile (if a chat profile is used)
42
+ auto_tag_thread = true
43
+
44
+ # Allow users to edit their own messages
45
+ edit_message = true
46
+
47
+ # Allow users to share threads (backend + UI). Requires an app-defined on_shared_thread_view callback.
48
+ allow_thread_sharing = false
49
+
50
+ # Enable favorite messages
51
+ favorites = false
52
+
53
+ [features.slack]
54
+ # Add emoji reaction when message is received (requires reactions:write OAuth scope)
55
+ reaction_on_message_received = false
56
+
57
+ # Authorize users to spontaneously upload files with messages
58
+ [features.spontaneous_file_upload]
59
+ enabled = true
60
+ # Define accepted file types using MIME types
61
+ # Examples:
62
+ # 1. For specific file types:
63
+ # accept = ["image/jpeg", "image/png", "application/pdf"]
64
+ # 2. For all files of certain type:
65
+ # accept = ["image/*", "audio/*", "video/*"]
66
+ # 3. For specific file extensions:
67
+ # accept = { "application/octet-stream" = [".xyz", ".pdb"] }
68
+ # Note: Using "*/*" is not recommended as it may cause browser warnings
69
+ accept = ["*/*"]
70
+ max_files = 20
71
+ max_size_mb = 500
72
+
73
+ [features.audio]
74
+ # Enable audio features
75
+ enabled = false
76
+ # Sample rate of the audio
77
+ sample_rate = 24000
78
+
79
+ [features.mcp]
80
+ # Enable Model Context Protocol (MCP) features
81
+ enabled = true
82
+
83
+ [features.mcp.sse]
84
+ enabled = true
85
+
86
+ [features.mcp.streamable-http]
87
+ enabled = true
88
+
89
+ [features.mcp.stdio]
90
+ enabled = true
91
+ # Only the executables in the allow list can be used for MCP stdio server.
92
+ # Only need the base name of the executable, e.g. "npx", not "/usr/bin/npx".
93
+ # Please don't comment this line for now, we need it to parse the executable name.
94
+ allowed_executables = [ "ssh", "runspec" ]
95
+
96
+ [UI]
97
+ # Name of the assistant.
98
+ name = "Assistant"
99
+
100
+ # default_theme = "dark"
101
+
102
+ # Force a specific language for all users (e.g., "en-US", "he-IL", "fr-FR")
103
+ # If not set, the browser's language will be used
104
+ # language = "en-US"
105
+
106
+ # layout = "wide"
107
+
108
+ # default_sidebar_state = "open" # Options: "open", "closed", "hidden"
109
+
110
+ # Chat settings display location: "message_composer" (default) or "sidebar" (header)
111
+ # chat_settings_location = "message_composer"
112
+
113
+ # Default state of chat settings sidebar when location is "sidebar"
114
+ # default_chat_settings_open = false
115
+
116
+ # Whether to prompt user confirmation on clicking 'New Chat'
117
+ confirm_new_chat = true
118
+
119
+ # Description of the assistant. This is used for HTML tags.
120
+ # description = ""
121
+
122
+ # Chain of Thought (CoT) display mode. Can be "hidden", "tool_call" or "full".
123
+ cot = "full"
124
+
125
+ # Specify a CSS file that can be used to customize the user interface.
126
+ # The CSS file can be served from the public directory or via an external link.
127
+ # custom_css = "/public/test.css"
128
+
129
+ # Specify additional attributes for a custom CSS file
130
+ # custom_css_attributes = "media=\"print\""
131
+
132
+ # Specify a JavaScript file that can be used to customize the user interface.
133
+ # The JavaScript file can be served from the public directory.
134
+ # custom_js = "/public/test.js"
135
+
136
+ # The style of alert boxes. Can be "classic" or "modern".
137
+ alert_style = "classic"
138
+
139
+ # Specify additional attributes for custom JS file
140
+ # custom_js_attributes = "async type = \"module\""
141
+
142
+ # Custom login page image, relative to public directory or external URL
143
+ # login_page_image = "/public/custom-background.jpg"
144
+
145
+ # Custom login page image filter (Tailwind internal filters, no dark/light variants)
146
+ # login_page_image_filter = "brightness-50 grayscale"
147
+ # login_page_image_dark_filter = "contrast-200 blur-sm"
148
+
149
+ # Specify a custom meta URL (used for meta tags like og:url)
150
+ # custom_meta_url = "https://github.com/Chainlit/chainlit"
151
+
152
+ # Specify a custom meta image url.
153
+ # custom_meta_image_url = "https://chainlit-cloud.s3.eu-west-3.amazonaws.com/logo/chainlit_banner.png"
154
+
155
+ # Load assistant logo directly from URL.
156
+ logo_file_url = ""
157
+
158
+ # Load assistant avatar image directly from URL.
159
+ default_avatar_file_url = ""
160
+
161
+ # Avatar size in pixels (default: 20).
162
+ # avatar_size = 20
163
+
164
+ # Specify a custom build directory for the frontend.
165
+ # This can be used to customize the frontend code.
166
+ # Be careful: If this is a relative path, it should not start with a slash.
167
+ # custom_build = "./public/build"
168
+
169
+ # Specify optional one or more custom links in the header.
170
+ # [[UI.header_links]]
171
+ # name = "Issues"
172
+ # display_name = "Report Issue"
173
+ # icon_url = "https://avatars.githubusercontent.com/u/128686189?s=200&v=4"
174
+ # url = "https://github.com/Chainlit/chainlit/issues"
175
+ # target = "_blank" (default) # Optional: "_self", "_parent", "_top".
176
+
177
+ [meta]
178
+ generated_by = "2.11.1"
@@ -0,0 +1,259 @@
1
+ {
2
+ "common": {
3
+ "actions": {
4
+ "cancel": "\u0625\u0644\u063a\u0627\u0621",
5
+ "confirm": "\u062a\u0623\u0643\u064a\u062f",
6
+ "continue": "\u0645\u062a\u0627\u0628\u0639\u0629",
7
+ "goBack": "\u0631\u062c\u0648\u0639",
8
+ "reset": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646",
9
+ "submit": "\u0625\u0631\u0633\u0627\u0644"
10
+ },
11
+ "status": {
12
+ "loading": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u0645\u064a\u0644...",
13
+ "error": {
14
+ "default": "\u062d\u062f\u062b \u062e\u0637\u0623",
15
+ "serverConnection": "\u062a\u0639\u0630\u0631 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0628\u0627\u0644\u062e\u0627\u062f\u0645"
16
+ }
17
+ }
18
+ },
19
+ "auth": {
20
+ "login": {
21
+ "title": "\u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0627\u0644\u062a\u0637\u0628\u064a\u0642",
22
+ "form": {
23
+ "email": {
24
+ "label": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
25
+ "required": "\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062d\u0642\u0644 \u0625\u0644\u0632\u0627\u0645\u064a",
26
+ "placeholder": "me@example.com"
27
+ },
28
+ "password": {
29
+ "label": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631",
30
+ "required": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u062d\u0642\u0644 \u0625\u0644\u0632\u0627\u0645\u064a"
31
+ },
32
+ "actions": {
33
+ "signin": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644"
34
+ },
35
+ "alternativeText": {
36
+ "or": "\u0623\u0648"
37
+ }
38
+ },
39
+ "errors": {
40
+ "default": "\u062a\u0639\u0630\u0631 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644",
41
+ "signin": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
42
+ "oauthSignin": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
43
+ "redirectUriMismatch": "\u0639\u0646\u0648\u0627\u0646 URI \u0644\u0625\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0648\u062c\u064a\u0647 \u0644\u0627 \u064a\u062a\u0637\u0627\u0628\u0642 \u0645\u0639 \u062a\u0643\u0648\u064a\u0646 \u062a\u0637\u0628\u064a\u0642 OAuth",
44
+ "oauthCallback": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
45
+ "oauthCreateAccount": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
46
+ "emailCreateAccount": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
47
+ "callback": "\u062d\u0627\u0648\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u062d\u0633\u0627\u0628 \u0622\u062e\u0631",
48
+ "oauthAccountNotLinked": "\u0644\u062a\u0623\u0643\u064a\u062f \u0647\u0648\u064a\u062a\u0643\u060c \u0642\u0645 \u0628\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0628\u0646\u0641\u0633 \u0627\u0644\u062d\u0633\u0627\u0628 \u0627\u0644\u0630\u064a \u0627\u0633\u062a\u062e\u062f\u0645\u062a\u0647 \u0641\u064a \u0627\u0644\u0623\u0635\u0644",
49
+ "emailSignin": "\u062a\u0639\u0630\u0631 \u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a",
50
+ "emailVerify": "\u064a\u0631\u062c\u0649 \u0627\u0644\u062a\u062d\u0642\u0642 \u0645\u0646 \u0628\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a\u060c \u062a\u0645 \u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u062c\u062f\u064a\u062f",
51
+ "credentialsSignin": "\u0641\u0634\u0644 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644. \u062a\u062d\u0642\u0642 \u0645\u0646 \u0635\u062d\u0629 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0642\u062f\u0645\u0629",
52
+ "sessionRequired": "\u064a\u0631\u062c\u0649 \u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062f\u062e\u0648\u0644 \u0644\u0644\u0648\u0635\u0648\u0644 \u0625\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629"
53
+ }
54
+ },
55
+ "provider": {
56
+ "continue": "\u0645\u062a\u0627\u0628\u0639\u0629 \u0645\u0639 {{provider}}"
57
+ }
58
+ },
59
+ "chat": {
60
+ "input": {
61
+ "placeholder": "\u0627\u0643\u062a\u0628 \u0631\u0633\u0627\u0644\u062a\u0643 \u0647\u0646\u0627...",
62
+ "actions": {
63
+ "send": "\u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u0631\u0633\u0627\u0644\u0629",
64
+ "stop": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u0645\u0647\u0645\u0629",
65
+ "attachFiles": "\u0625\u0631\u0641\u0627\u0642 \u0645\u0644\u0641\u0627\u062a"
66
+ }
67
+ },
68
+ "favorites": {
69
+ "use": "\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0631\u0633\u0627\u0644\u0629 \u0645\u0641\u0636\u0644\u0629",
70
+ "headline": "\u0627\u0644\u0631\u0633\u0627\u0626\u0644 \u0627\u0644\u0645\u0641\u0636\u0644\u0629",
71
+ "empty": {
72
+ "title": "\u0644\u0627 \u062a\u0648\u062c\u062f \u0631\u0633\u0627\u0626\u0644 \u0645\u062d\u0641\u0648\u0638\u0629 \u0628\u0639\u062f",
73
+ "description": "\u0627\u0628\u062f\u0623 \u0628\u0625\u0631\u0633\u0627\u0644 \u0631\u0633\u0627\u0644\u0629 \u0648\u0642\u0645 \u0628\u062a\u0645\u064a\u064a\u0632\u0647\u0627 \u0628\u0646\u062c\u0645\u0629 \u0623\u0648 \u0645\u064a\u0651\u0632 \u0631\u0633\u0627\u0644\u0629 \u0645\u0646 \u0645\u062d\u0627\u062f\u062b\u0627\u062a\u0643 \u0627\u0644\u0633\u0627\u0628\u0642\u0629"
74
+ }
75
+ },
76
+ "commands": {
77
+ "button": "\u0623\u062f\u0648\u0627\u062a",
78
+ "changeTool": "\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0623\u062f\u0627\u0629",
79
+ "availableTools": "\u0627\u0644\u0623\u062f\u0648\u0627\u062a \u0627\u0644\u0645\u062a\u0627\u062d\u0629"
80
+ },
81
+ "speech": {
82
+ "start": "\u0628\u062f\u0621 \u0627\u0644\u062a\u0633\u062c\u064a\u0644",
83
+ "stop": "\u0625\u064a\u0642\u0627\u0641 \u0627\u0644\u062a\u0633\u062c\u064a\u0644",
84
+ "connecting": "\u062c\u0627\u0631\u064a \u0627\u0644\u0627\u062a\u0635\u0627\u0644"
85
+ },
86
+ "fileUpload": {
87
+ "dragDrop": "\u0627\u0633\u062d\u0628 \u0648\u0623\u0641\u0644\u062a \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0647\u0646\u0627",
88
+ "browse": "\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0644\u0641\u0627\u062a",
89
+ "sizeLimit": "\u0627\u0644\u062d\u062f \u0627\u0644\u0623\u0642\u0635\u0649:",
90
+ "errors": {
91
+ "failed": "\u0641\u0634\u0644 \u0627\u0644\u062a\u062d\u0645\u064a\u0644",
92
+ "cancelled": "\u062a\u0645 \u0625\u0644\u063a\u0627\u0621 \u062a\u062d\u0645\u064a\u0644"
93
+ },
94
+ "actions": {
95
+ "cancelUpload": "\u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u062a\u062d\u0645\u064a\u0644",
96
+ "removeAttachment": "\u0625\u0632\u0627\u0644\u0629 \u0627\u0644\u0645\u0631\u0641\u0642"
97
+ }
98
+ },
99
+ "messages": {
100
+ "status": {
101
+ "using": "\u064a\u0633\u062a\u062e\u062f\u0645",
102
+ "used": "\u0645\u0633\u062a\u062e\u062f\u0645"
103
+ },
104
+ "actions": {
105
+ "copy": {
106
+ "button": "\u0646\u0633\u062e \u0625\u0644\u0649 \u0627\u0644\u062d\u0627\u0641\u0638\u0629",
107
+ "success": "\u062a\u0645 \u0627\u0644\u0646\u0633\u062e!"
108
+ }
109
+ },
110
+ "feedback": {
111
+ "positive": "\u0645\u0641\u064a\u062f",
112
+ "negative": "\u063a\u064a\u0631 \u0645\u0641\u064a\u062f",
113
+ "edit": "\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u062a\u0639\u0644\u064a\u0642",
114
+ "dialog": {
115
+ "title": "\u0625\u0636\u0627\u0641\u0629 \u062a\u0639\u0644\u064a\u0642",
116
+ "submit": "\u0625\u0631\u0633\u0627\u0644 \u0627\u0644\u062a\u0639\u0644\u064a\u0642",
117
+ "yourFeedback": "\u0631\u0623\u064a\u0643..."
118
+ },
119
+ "status": {
120
+ "updating": "\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u062f\u064a\u062b",
121
+ "updated": "\u062a\u0645 \u062a\u062d\u062f\u064a\u062b \u0627\u0644\u062a\u0639\u0644\u064a\u0642"
122
+ }
123
+ }
124
+ },
125
+ "history": {
126
+ "title": "\u0627\u0644\u0645\u062f\u062e\u0644\u0627\u062a \u0627\u0644\u0623\u062e\u064a\u0631\u0629",
127
+ "empty": "\u0641\u0627\u0631\u063a \u062a\u0645\u0627\u0645\u0627\u064b...",
128
+ "show": "\u0639\u0631\u0636 \u0627\u0644\u0633\u062c\u0644"
129
+ },
130
+ "settings": {
131
+ "title": "\u0644\u0648\u062d\u0629 \u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
132
+ "customize": "\u062e\u0635\u0635 \u0625\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0647\u0646\u0627"
133
+ },
134
+ "watermark": "\u0642\u062f \u062a\u062e\u0637\u0626 \u0646\u0645\u0627\u0630\u062c \u0627\u0644\u0630\u0643\u0627\u0621 \u0627\u0644\u0627\u0635\u0637\u0646\u0627\u0639\u064a. \u062a\u062d\u0642\u0642 \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0647\u0645\u0629."
135
+ },
136
+ "threadHistory": {
137
+ "sidebar": {
138
+ "title": "\u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0627\u062a \u0627\u0644\u0633\u0627\u0628\u0642\u0629",
139
+ "filters": {
140
+ "search": "\u0628\u062d\u062b",
141
+ "placeholder": "\u0627\u0644\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0627\u062a..."
142
+ },
143
+ "timeframes": {
144
+ "today": "\u0627\u0644\u064a\u0648\u0645",
145
+ "yesterday": "\u0623\u0645\u0633",
146
+ "previous7days": "\u0622\u062e\u0631 7 \u0623\u064a\u0627\u0645",
147
+ "previous30days": "\u0622\u062e\u0631 30 \u064a\u0648\u0645\u0627\u064b"
148
+ },
149
+ "empty": "\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u062d\u0627\u062f\u062b\u0627\u062a",
150
+ "actions": {
151
+ "close": "\u0625\u063a\u0644\u0627\u0642 \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a",
152
+ "open": "\u0641\u062a\u062d \u0627\u0644\u0634\u0631\u064a\u0637 \u0627\u0644\u062c\u0627\u0646\u0628\u064a"
153
+ }
154
+ },
155
+ "thread": {
156
+ "untitled": "\u0645\u062d\u0627\u062f\u062b\u0629 \u0628\u062f\u0648\u0646 \u0639\u0646\u0648\u0627\u0646",
157
+ "menu": {
158
+ "rename": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629",
159
+ "share": "\u0645\u0634\u0627\u0631\u0643\u0629",
160
+ "delete": "\u062d\u0630\u0641"
161
+ },
162
+ "actions": {
163
+ "share": {
164
+ "title": "\u0645\u0634\u0627\u0631\u0643\u0629 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
165
+ "button": "\u0645\u0634\u0627\u0631\u0643\u0629",
166
+ "status": {
167
+ "copied": "\u062a\u0645 \u0646\u0633\u062e \u0627\u0644\u0631\u0627\u0628\u0637",
168
+ "created": "\u062a\u0645 \u0625\u0646\u0634\u0627\u0621 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629!",
169
+ "unshared": "\u062a\u0645 \u062a\u0639\u0637\u064a\u0644 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629 \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
170
+ },
171
+ "error": {
172
+ "create": "\u0641\u0634\u0644 \u0625\u0646\u0634\u0627\u0621 \u0631\u0627\u0628\u0637 \u0627\u0644\u0645\u0634\u0627\u0631\u0643\u0629",
173
+ "unshare": "\u0641\u0634\u0644 \u062a\u0639\u0637\u064a\u0644 \u0645\u0634\u0627\u0631\u0643\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
174
+ }
175
+ },
176
+ "delete": {
177
+ "title": "\u062a\u0623\u0643\u064a\u062f \u0627\u0644\u062d\u0630\u0641",
178
+ "description": "\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0645\u0639 \u0631\u0633\u0627\u0626\u0644\u0647\u0627 \u0648\u0639\u0646\u0627\u0635\u0631\u0647\u0627. \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u0631\u0627\u062c\u0639 \u0639\u0646 \u0647\u0630\u0627 \u0627\u0644\u0625\u062c\u0631\u0627\u0621",
179
+ "success": "\u062a\u0645 \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
180
+ "inProgress": "\u062c\u0627\u0631\u064a \u062d\u0630\u0641 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
181
+ },
182
+ "rename": {
183
+ "title": "\u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
184
+ "description": "\u0623\u062f\u062e\u0644 \u0627\u0633\u0645\u0627\u064b \u062c\u062f\u064a\u062f\u0627\u064b \u0644\u0647\u0630\u0647 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629",
185
+ "form": {
186
+ "name": {
187
+ "label": "\u0627\u0644\u0627\u0633\u0645",
188
+ "placeholder": "\u0623\u062f\u062e\u0644 \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u062c\u062f\u064a\u062f"
189
+ }
190
+ },
191
+ "success": "\u062a\u0645\u062a \u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629!",
192
+ "inProgress": "\u062c\u0627\u0631\u064a \u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629"
193
+ }
194
+ }
195
+ }
196
+ },
197
+ "navigation": {
198
+ "header": {
199
+ "chat": "\u0645\u062d\u0627\u062f\u062b\u0629",
200
+ "readme": "\u0627\u0642\u0631\u0623\u0646\u064a",
201
+ "theme": {
202
+ "light": "\u0627\u0644\u0633\u0645\u0629 \u0627\u0644\u0641\u0627\u062a\u062d\u0629",
203
+ "dark": "\u0627\u0644\u0633\u0645\u0629 \u0627\u0644\u062f\u0627\u0643\u0646\u0629",
204
+ "system": "\u0645\u062a\u0627\u0628\u0639\u0629 \u0627\u0644\u0646\u0638\u0627\u0645"
205
+ }
206
+ },
207
+ "newChat": {
208
+ "button": "\u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629",
209
+ "dialog": {
210
+ "title": "\u0625\u0646\u0634\u0627\u0621 \u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629",
211
+ "description": "\u0633\u064a\u0624\u062f\u064a \u0647\u0630\u0627 \u0625\u0644\u0649 \u0645\u0633\u062d \u0633\u062c\u0644 \u0627\u0644\u0645\u062d\u0627\u062f\u062b\u0629 \u0627\u0644\u062d\u0627\u0644\u064a. \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0645\u062a\u0627\u0628\u0639\u0629\u061f",
212
+ "tooltip": "\u0645\u062d\u0627\u062f\u062b\u0629 \u062c\u062f\u064a\u062f\u0629"
213
+ }
214
+ },
215
+ "user": {
216
+ "menu": {
217
+ "settings": "\u0627\u0644\u0625\u0639\u062f\u0627\u062f\u0627\u062a",
218
+ "settingsKey": "S",
219
+ "apiKeys": "\u0645\u0641\u0627\u062a\u064a\u062d API",
220
+ "logout": "\u062a\u0633\u062c\u064a\u0644 \u0627\u0644\u062e\u0631\u0648\u062c"
221
+ }
222
+ }
223
+ },
224
+ "apiKeys": {
225
+ "title": "\u0645\u0641\u0627\u062a\u064a\u062d API \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629",
226
+ "description": "\u0644\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0647\u0630\u0627 \u0627\u0644\u062a\u0637\u0628\u064a\u0642\u060c \u0645\u0641\u0627\u062a\u064a\u062d API \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0645\u0637\u0644\u0648\u0628\u0629. \u064a\u062a\u0645 \u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d \u0641\u064a \u0627\u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u062d\u0644\u064a \u0644\u062c\u0647\u0627\u0632\u0643.",
227
+ "success": {
228
+ "saved": "\u062a\u0645 \u0627\u0644\u062d\u0641\u0638 \u0628\u0646\u062c\u0627\u062d"
229
+ }
230
+ },
231
+ "alerts": {
232
+ "info": "\u0645\u0639\u0644\u0648\u0645\u0627\u062a",
233
+ "note": "\u0645\u0644\u0627\u062d\u0638\u0629",
234
+ "tip": "\u0646\u0635\u064a\u062d\u0629",
235
+ "important": "\u0645\u0647\u0645",
236
+ "warning": "\u062a\u062d\u0630\u064a\u0631",
237
+ "caution": "\u062a\u0646\u0628\u064a\u0647",
238
+ "debug": "\u062a\u0635\u062d\u064a\u062d",
239
+ "example": "\u0645\u062b\u0627\u0644",
240
+ "success": "\u0646\u062c\u0627\u062d",
241
+ "help": "\u0645\u0633\u0627\u0639\u062f\u0629",
242
+ "idea": "\u0641\u0643\u0631\u0629",
243
+ "pending": "\u0642\u064a\u062f \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631",
244
+ "security": "\u0623\u0645\u0627\u0646",
245
+ "beta": "\u062a\u062c\u0631\u064a\u0628\u064a",
246
+ "best-practice": "\u0623\u0641\u0636\u0644 \u0645\u0645\u0627\u0631\u0633\u0629"
247
+ },
248
+ "components": {
249
+ "MultiSelectInput": {
250
+ "placeholder": "\u0627\u062e\u062a\u0631..."
251
+ },
252
+ "DatePickerInput": {
253
+ "placeholder": {
254
+ "single": "\u0627\u062e\u062a\u0631 \u062a\u0627\u0631\u064a\u062e\u0627\u064b",
255
+ "range": "\u0627\u062e\u062a\u0631 \u0646\u0637\u0627\u0642\u0627\u064b \u0645\u0646 \u0627\u0644\u062a\u0648\u0627\u0631\u064a\u062e"
256
+ }
257
+ }
258
+ }
259
+ }