pygpt-net 2.7.9__py3-none-any.whl → 2.7.10__py3-none-any.whl
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.
- pygpt_net/CHANGELOG.txt +9 -0
- pygpt_net/LICENSE +1 -1
- pygpt_net/__init__.py +3 -3
- pygpt_net/config.py +15 -1
- pygpt_net/controller/chat/common.py +5 -4
- pygpt_net/controller/chat/image.py +3 -3
- pygpt_net/controller/chat/stream.py +76 -41
- pygpt_net/controller/chat/stream_worker.py +3 -3
- pygpt_net/controller/ctx/extra.py +3 -1
- pygpt_net/controller/dialogs/debug.py +37 -8
- pygpt_net/controller/kernel/kernel.py +3 -7
- pygpt_net/controller/lang/custom.py +25 -12
- pygpt_net/controller/lang/lang.py +45 -3
- pygpt_net/controller/lang/mapping.py +15 -2
- pygpt_net/controller/notepad/notepad.py +68 -25
- pygpt_net/controller/presets/editor.py +5 -1
- pygpt_net/controller/presets/presets.py +17 -5
- pygpt_net/controller/theme/theme.py +11 -2
- pygpt_net/controller/ui/tabs.py +1 -1
- pygpt_net/core/ctx/output.py +38 -12
- pygpt_net/core/db/database.py +4 -2
- pygpt_net/core/debug/console/console.py +30 -2
- pygpt_net/core/debug/context.py +2 -1
- pygpt_net/core/debug/ui.py +26 -4
- pygpt_net/core/filesystem/filesystem.py +6 -2
- pygpt_net/core/notepad/notepad.py +2 -2
- pygpt_net/core/tabs/tabs.py +79 -19
- pygpt_net/data/config/config.json +3 -3
- pygpt_net/data/config/models.json +3 -3
- pygpt_net/data/config/settings.json +12 -0
- pygpt_net/data/locale/locale.ar.ini +1833 -0
- pygpt_net/data/locale/locale.bg.ini +1833 -0
- pygpt_net/data/locale/locale.cs.ini +1833 -0
- pygpt_net/data/locale/locale.da.ini +1833 -0
- pygpt_net/data/locale/locale.de.ini +4 -1
- pygpt_net/data/locale/locale.en.ini +70 -67
- pygpt_net/data/locale/locale.es.ini +4 -1
- pygpt_net/data/locale/locale.fi.ini +1833 -0
- pygpt_net/data/locale/locale.fr.ini +4 -1
- pygpt_net/data/locale/locale.he.ini +1833 -0
- pygpt_net/data/locale/locale.hi.ini +1833 -0
- pygpt_net/data/locale/locale.hu.ini +1833 -0
- pygpt_net/data/locale/locale.it.ini +4 -1
- pygpt_net/data/locale/locale.ja.ini +1833 -0
- pygpt_net/data/locale/locale.ko.ini +1833 -0
- pygpt_net/data/locale/locale.nl.ini +1833 -0
- pygpt_net/data/locale/locale.no.ini +1833 -0
- pygpt_net/data/locale/locale.pl.ini +5 -2
- pygpt_net/data/locale/locale.pt.ini +1833 -0
- pygpt_net/data/locale/locale.ro.ini +1833 -0
- pygpt_net/data/locale/locale.ru.ini +1833 -0
- pygpt_net/data/locale/locale.sk.ini +1833 -0
- pygpt_net/data/locale/locale.sv.ini +1833 -0
- pygpt_net/data/locale/locale.tr.ini +1833 -0
- pygpt_net/data/locale/locale.uk.ini +4 -1
- pygpt_net/data/locale/locale.zh.ini +4 -1
- pygpt_net/item/notepad.py +8 -2
- pygpt_net/migrations/Version20260121190000.py +25 -0
- pygpt_net/migrations/Version20260122140000.py +25 -0
- pygpt_net/migrations/__init__.py +5 -1
- pygpt_net/preload.py +246 -3
- pygpt_net/provider/api/__init__.py +16 -2
- pygpt_net/provider/api/anthropic/__init__.py +21 -7
- pygpt_net/provider/api/google/__init__.py +21 -7
- pygpt_net/provider/api/google/image.py +89 -2
- pygpt_net/provider/api/google/video.py +2 -2
- pygpt_net/provider/api/openai/__init__.py +26 -11
- pygpt_net/provider/api/openai/image.py +79 -3
- pygpt_net/provider/api/openai/responses.py +11 -31
- pygpt_net/provider/api/openai/video.py +2 -2
- pygpt_net/provider/api/x_ai/__init__.py +21 -7
- pygpt_net/provider/core/notepad/db_sqlite/storage.py +53 -10
- pygpt_net/tools/agent_builder/ui/dialogs.py +2 -1
- pygpt_net/tools/audio_transcriber/ui/dialogs.py +2 -1
- pygpt_net/tools/code_interpreter/ui/dialogs.py +2 -1
- pygpt_net/tools/html_canvas/ui/dialogs.py +2 -1
- pygpt_net/tools/image_viewer/ui/dialogs.py +3 -5
- pygpt_net/tools/indexer/ui/dialogs.py +2 -1
- pygpt_net/tools/media_player/ui/dialogs.py +2 -1
- pygpt_net/tools/translator/ui/dialogs.py +2 -1
- pygpt_net/tools/translator/ui/widgets.py +6 -2
- pygpt_net/ui/dialog/about.py +2 -2
- pygpt_net/ui/dialog/db.py +2 -1
- pygpt_net/ui/dialog/debug.py +169 -6
- pygpt_net/ui/dialog/logger.py +6 -2
- pygpt_net/ui/dialog/models.py +36 -3
- pygpt_net/ui/dialog/preset.py +5 -1
- pygpt_net/ui/dialog/remote_store.py +2 -1
- pygpt_net/ui/main.py +3 -2
- pygpt_net/ui/widget/dialog/editor_file.py +2 -1
- pygpt_net/ui/widget/lists/debug.py +12 -7
- pygpt_net/ui/widget/option/checkbox.py +2 -8
- pygpt_net/ui/widget/option/combo.py +10 -2
- pygpt_net/ui/widget/textarea/console.py +156 -7
- pygpt_net/ui/widget/textarea/highlight.py +66 -0
- pygpt_net/ui/widget/textarea/input.py +624 -57
- pygpt_net/ui/widget/textarea/notepad.py +294 -27
- {pygpt_net-2.7.9.dist-info → pygpt_net-2.7.10.dist-info}/LICENSE +1 -1
- {pygpt_net-2.7.9.dist-info → pygpt_net-2.7.10.dist-info}/METADATA +11 -64
- {pygpt_net-2.7.9.dist-info → pygpt_net-2.7.10.dist-info}/RECORD +102 -81
- {pygpt_net-2.7.9.dist-info → pygpt_net-2.7.10.dist-info}/WHEEL +0 -0
- {pygpt_net-2.7.9.dist-info → pygpt_net-2.7.10.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,1833 @@
|
|
|
1
|
+
[LOCALE]
|
|
2
|
+
about.btn.github = GitHub
|
|
3
|
+
about.btn.support = 기부하기
|
|
4
|
+
about.btn.website = 웹사이트
|
|
5
|
+
about.thanks = 특별 감사:
|
|
6
|
+
about.thanks.contributors = GitHub 커뮤니티
|
|
7
|
+
about.thanks.sponsors = 스폰서
|
|
8
|
+
about.thanks.supporters = 후원자
|
|
9
|
+
action.add = 추가
|
|
10
|
+
action.clear = 지우기
|
|
11
|
+
action.close = 닫기
|
|
12
|
+
action.cmd.expand = JSON 출력
|
|
13
|
+
action.copy = 복사
|
|
14
|
+
action.ctx_copy_id = ID 복사
|
|
15
|
+
action.ctx.indexed = 마지막 인덱싱 시각
|
|
16
|
+
action.ctx.new = 새 컨텍스트...
|
|
17
|
+
action.ctx.new.in_group = 다음 그룹에 새 컨텍스트: {group}...
|
|
18
|
+
action.ctx_reset = 초기화(비우기)
|
|
19
|
+
action.cut = 잘라내기
|
|
20
|
+
action.delete = 삭제
|
|
21
|
+
action.download = 다운로드
|
|
22
|
+
action.duplicate = 복제
|
|
23
|
+
action.edit = 편집
|
|
24
|
+
action.group.delete.all = 모두 삭제(항목 포함)
|
|
25
|
+
action.group.delete.only = 삭제(그룹만)
|
|
26
|
+
action.group.new = 새 그룹
|
|
27
|
+
action.group.remove = 그룹에서 제거
|
|
28
|
+
action.idx = LlamaIndex로 인덱싱...
|
|
29
|
+
action.idx.remove = 제거:
|
|
30
|
+
action.import = 가져오기
|
|
31
|
+
action.mark = 강조 표시
|
|
32
|
+
action.mkdir = 디렉터리 생성...
|
|
33
|
+
action.move_to = 이동:
|
|
34
|
+
action.new = 새로 만들기...
|
|
35
|
+
action.open = 열기
|
|
36
|
+
action.open_dir = 디렉터리에서 열기...
|
|
37
|
+
action.open_dir_dest = 대상 디렉터리 열기
|
|
38
|
+
action.open_dir_src = 원본 디렉터리 열기
|
|
39
|
+
action.open_dir_storage = 저장소 디렉터리 열기
|
|
40
|
+
action.open_new_tab = 새 탭에서 열기
|
|
41
|
+
action.open_new_window = 열기(새 창)
|
|
42
|
+
action.pack = 패킹
|
|
43
|
+
action.paste = 붙여넣기
|
|
44
|
+
action.pin = 맨 위에 고정
|
|
45
|
+
action.preview = 미리보기
|
|
46
|
+
action.profile.delete = 프로필 제거(목록에서만)
|
|
47
|
+
action.profile.delete_all = 프로필 삭제(모든 사용자 파일 포함)
|
|
48
|
+
action.redo = 다시 실행
|
|
49
|
+
action.refresh = 새로고침
|
|
50
|
+
action.reload = 다시 불러오기
|
|
51
|
+
action.rename = 이름 바꾸기
|
|
52
|
+
action.reset = 초기화
|
|
53
|
+
action.restore = 복원
|
|
54
|
+
action.save = 저장
|
|
55
|
+
action.save_as = 다른 이름으로 저장...
|
|
56
|
+
action.save_selection_as = 선택 항목을 다른 이름으로 저장...
|
|
57
|
+
action.select_all = 모두 선택
|
|
58
|
+
action.select_unselect_all = 전체 선택/해제
|
|
59
|
+
action.tab.add.chat = 새 채팅 추가
|
|
60
|
+
action.tab.add.chat.tooltip = 새 채팅 추가(우클릭하면 더 많은 옵션...)
|
|
61
|
+
action.tab.add.notepad = 새 메모장 추가
|
|
62
|
+
action.tab.add.tool = 새 도구 추가
|
|
63
|
+
action.tab.close = 닫기
|
|
64
|
+
action.tab.close_all.chat = 모든 채팅 닫기
|
|
65
|
+
action.tab.close_all.notepad = 모든 메모장 닫기
|
|
66
|
+
action.tab.move.left = 왼쪽 열로 이동
|
|
67
|
+
action.tab.move.right = 오른쪽 열로 이동
|
|
68
|
+
action.touch = 파일 생성...
|
|
69
|
+
action.truncate = 잘라내기(비우기)
|
|
70
|
+
action.undo = 실행 취소
|
|
71
|
+
action.unmark = 강조 표시 해제
|
|
72
|
+
action.unpack = 언패킹
|
|
73
|
+
action.unpin = 고정 해제
|
|
74
|
+
action.upload = 여기에 파일 업로드...
|
|
75
|
+
action.use = 사용
|
|
76
|
+
action.use.attachment = 첨부로
|
|
77
|
+
action.use.copy_sys_path = 시스템 경로 복사
|
|
78
|
+
action.use.copy_work_path = 작업 경로 복사
|
|
79
|
+
action.use.image = 이미지로...
|
|
80
|
+
action.use.read_cmd = 이 파일을 읽어 달라고 요청...
|
|
81
|
+
action.video.open = 비디오 또는 오디오 열기...
|
|
82
|
+
action.video.play = 비디오 또는 오디오 재생...
|
|
83
|
+
action.video.transcribe = 오디오 전사...
|
|
84
|
+
agent.builder.confirm.clear.msg = 그래프를 정말로 지우시겠습니까?
|
|
85
|
+
agent.builder.confirm.clear.title = 지우기
|
|
86
|
+
agent.builder.confirm.delete.msg = 에이전트를 정말로 삭제하시겠습니까?
|
|
87
|
+
agent.builder.title = 에이전트 빌더
|
|
88
|
+
agent.coder.additional.label = 추가 프롬프트
|
|
89
|
+
agent.coder.additional.prompt.desc = 에이전트용 추가 프롬프트(기본 프롬프트에 추가됨)
|
|
90
|
+
agent.coder.base.label = 기본 프롬프트
|
|
91
|
+
agent.coder.base.prompt.desc = 코드 실행 프롬프트(초기)
|
|
92
|
+
agent.eval.feedback = 피드백
|
|
93
|
+
agent.eval.next = 피드백으로 재실행 중
|
|
94
|
+
agent.eval.score = 평가 점수
|
|
95
|
+
agent.eval.score.good = 응답이 충분히 좋습니다. 종료합니다.
|
|
96
|
+
agent.evolve.generation = 세대
|
|
97
|
+
agent.evolve.maxgen_limit = 최대 세대에 도달했습니다. 종료합니다.
|
|
98
|
+
agent.evolve.option.max_generations = 최대 세대 수
|
|
99
|
+
agent.evolve.option.num_parents = 부모 수
|
|
100
|
+
agent.evolve.running = 에이전트 실행 중
|
|
101
|
+
agent.evolve.winner = 우승자: 에이전트
|
|
102
|
+
agent.infinity.confirm.content = 경고: 무한 루프를 실행하려고 합니다! 토큰 사용량이 크게 증가할 수 있습니다. 계속하시겠습니까?
|
|
103
|
+
agent.name.supervisor = 감독자
|
|
104
|
+
agent.name.worker = 작업자
|
|
105
|
+
agent.option.debug.trace_id = Trace ID
|
|
106
|
+
agent.option.debug.trace_id.desc = OpenAI 패널에서 추적을 위한 선택적 Trace ID: https://platform.openai.com/logs?api=traces (OpenAI 에이전트 전용)
|
|
107
|
+
agent.option.model = 모델
|
|
108
|
+
agent.option.name = 이름
|
|
109
|
+
agent.option.prompt = 프롬프트
|
|
110
|
+
agent.option.prompt.b1.desc = 봇 1용 프롬프트
|
|
111
|
+
agent.option.prompt.b2.desc = 봇 2용 프롬프트
|
|
112
|
+
agent.option.prompt.base.desc = 기본 에이전트용 프롬프트
|
|
113
|
+
agent.option.prompt.chooser.desc = 선택기 에이전트용 프롬프트
|
|
114
|
+
agent.option.prompt.desc = 에이전트용 프롬프트
|
|
115
|
+
agent.option.prompt.feedback.desc = 피드백 평가용 프롬프트
|
|
116
|
+
agent.option.prompt.planner.desc = 플래너 에이전트용 프롬프트
|
|
117
|
+
agent.option.prompt.refine.desc = 계획 정제용 프롬프트
|
|
118
|
+
agent.option.prompt.search.desc = 검색 에이전트용 프롬프트
|
|
119
|
+
agent.option.prompt.supervisor.desc = 감독자용 프롬프트
|
|
120
|
+
agent.option.prompt.worker.desc = 작업자용 프롬프트
|
|
121
|
+
agent.option.refine.after_each = 각 단계 후
|
|
122
|
+
agent.option.refine.after_each.desc = 각 단계 후 계획 정제
|
|
123
|
+
agent.option.role = 모델에 지시하기 위한 에이전트 동작의 짧은 설명(선택)
|
|
124
|
+
agent.option.role.label = 역할
|
|
125
|
+
agent.option.section.base = 기본 에이전트
|
|
126
|
+
agent.option.section.chooser = 선택기
|
|
127
|
+
agent.option.section.feedback = 피드백
|
|
128
|
+
agent.option.section.planner = 플래너
|
|
129
|
+
agent.option.section.refine = 계획 정제
|
|
130
|
+
agent.option.section.search = 검색
|
|
131
|
+
agent.option.section.supervisor = 감독자
|
|
132
|
+
agent.option.section.worker = 작업자
|
|
133
|
+
agent.option.section.writer = 작성자
|
|
134
|
+
agent.option.tools.local = 로컬 도구 허용
|
|
135
|
+
agent.option.tools.local.desc = 이 에이전트에서 로컬 도구 사용을 허용
|
|
136
|
+
agent.option.tools.remote = 원격 도구 허용
|
|
137
|
+
agent.option.tools.remote.desc = 이 에이전트에서 원격 도구 사용을 허용
|
|
138
|
+
agent.planner.display.executor = 실행자
|
|
139
|
+
agent.planner.display.executor_agent = FunctionAgent
|
|
140
|
+
agent.planner.display.planner = PlannerWorkflow
|
|
141
|
+
agent.planner.label.execute = 실행
|
|
142
|
+
agent.planner.label.plan = 계획
|
|
143
|
+
agent.planner.label.refine = 정제
|
|
144
|
+
agent.planner.label.refine.index = 정제 {index}
|
|
145
|
+
agent.planner.label.refine.index_total = 정제 {index}/{total}
|
|
146
|
+
agent.planner.label.step = 단계
|
|
147
|
+
agent.planner.label.subtask = 하위 작업
|
|
148
|
+
agent.planner.label.subtask.index = 하위 작업 {index}
|
|
149
|
+
agent.planner.label.subtask.index_total = 하위 작업 {index}/{total}
|
|
150
|
+
agent.planner.label.with_name = {base}: {name}
|
|
151
|
+
agent.planner.plan.label = 플래너(초기)
|
|
152
|
+
agent.planner.plan.prompt.desc = 초기 계획 프롬프트
|
|
153
|
+
agent.planner.refine.label = 플래너(정제)
|
|
154
|
+
agent.planner.refine.prompt.desc = 계획 정제 프롬프트
|
|
155
|
+
agent.planner.step.label = 실행 프롬프트
|
|
156
|
+
agent.planner.step.prompt.desc = 단계 실행 프롬프트
|
|
157
|
+
agent.planner.ui.current_plan = 현재 계획:
|
|
158
|
+
agent.planner.ui.dependencies = 의존성:
|
|
159
|
+
agent.planner.ui.executing_plan = 계획 실행 중...
|
|
160
|
+
agent.planner.ui.execution_stopped = 계획 실행이 중지되었습니다.
|
|
161
|
+
agent.planner.ui.expected_output = 예상 출력:
|
|
162
|
+
agent.planner.ui.plan_execution_finished = 계획 실행이 완료되었습니다.
|
|
163
|
+
agent.planner.ui.plan_finished = 계획이 완료되었습니다.
|
|
164
|
+
agent.planner.ui.plan_marked_complete = 플래너가 계획을 완료로 표시함: {reason}
|
|
165
|
+
agent.planner.ui.refine_failed_parse = 정제 단계 파싱에 실패했습니다. 변경 없이 계속합니다.
|
|
166
|
+
agent.planner.ui.refining_remaining_plan = 남은 계획 정제 중...
|
|
167
|
+
agent.planner.ui.subtask_failed = 하위 작업 실패: {error}
|
|
168
|
+
agent.planner.ui.subtask_finished = 하위 작업 완료 {index}/{total}: {name}
|
|
169
|
+
agent.planner.ui.subtask_header.one = **===== 하위 작업 {index}: {name} =====**
|
|
170
|
+
agent.planner.ui.subtask_header.progress = **===== 하위 작업 {index}/{total}: {name} =====**
|
|
171
|
+
agent.planner.ui.updated_remaining_plan = 업데이트된 남은 계획:
|
|
172
|
+
agent.tab.debug = 디버그
|
|
173
|
+
alert.preset.empty_id = 이름이 필요합니다.
|
|
174
|
+
alert.preset.no_chat_completion = chat, completion, img 또는 vision 옵션 중 최소 1개가 필요합니다!
|
|
175
|
+
alert.snap.file_manager = Snap이 감지되었습니다. 파일 관리자에서 다음 디렉터리를 수동으로 열어주세요:
|
|
176
|
+
alert.title = 정보
|
|
177
|
+
assistant.action.delete = 삭제
|
|
178
|
+
assistant.action.duplicate = 복제
|
|
179
|
+
assistant.action.edit = 편집
|
|
180
|
+
assistant.api.tip = 도움말: https://platform.openai.com/assistants
|
|
181
|
+
assistant.description = 설명
|
|
182
|
+
assistant.form.empty.fields = 이름과 모델은 필수 항목입니다.
|
|
183
|
+
assistant.func.add = + 함수
|
|
184
|
+
assistant.functions.label = 함수
|
|
185
|
+
assistant.id = ID
|
|
186
|
+
assistant.import = 가져오기
|
|
187
|
+
assistant.instructions = 지침(시스템 프롬프트)
|
|
188
|
+
assistant.model = 모델
|
|
189
|
+
assistant.name = 이름
|
|
190
|
+
assistant.new = 생성
|
|
191
|
+
assistant.new.id_tip = 새 어시스턴트를 만들려면 ID를 비워두세요.\n...또는 서버에 이미 존재하는 경우 OpenAI의 ID를 입력하세요.
|
|
192
|
+
assistant.run.completed = 실행: 완료
|
|
193
|
+
assistant.run.failed = 실행: 실패
|
|
194
|
+
assistant.run.func.call = 실행: 함수 호출...
|
|
195
|
+
assistant.run.listening = 실행: 진행 중...
|
|
196
|
+
assistant.tool.code_interpreter = 코드 인터프리터
|
|
197
|
+
assistant.tool.file_search = 파일과 채팅
|
|
198
|
+
assistant.tool.function = 함수
|
|
199
|
+
assistant.tool.retrieval = 검색(Retrieval)
|
|
200
|
+
assistant.vector_store = 벡터 스토어
|
|
201
|
+
attachments.auto_index = 업로드 시 자동 인덱싱
|
|
202
|
+
attachments.btn.add = 파일 추가
|
|
203
|
+
attachments.btn.add_url = 웹
|
|
204
|
+
attachments.btn.clear = 지우기
|
|
205
|
+
attachments.btn.input.add = 첨부 추가
|
|
206
|
+
attachments.capture_clear = 캡처 시 지우기
|
|
207
|
+
attachments.clear.confirm = 목록을 지울까요?
|
|
208
|
+
attachments.ctx.indexed = 예
|
|
209
|
+
attachments.ctx.label = 추가 컨텍스트
|
|
210
|
+
attachments.ctx.mode.full = 전체 컨텍스트
|
|
211
|
+
attachments.ctx.mode.off = 끔(비활성화)
|
|
212
|
+
attachments.ctx.mode.query = RAG
|
|
213
|
+
attachments.ctx.mode.summary = 요약
|
|
214
|
+
attachments.ctx.tooltip.list = 첨부 {num}개
|
|
215
|
+
attachments.delete.confirm = 목록에서 파일을 제거할까요?
|
|
216
|
+
attachments.header.ctx = Ctx
|
|
217
|
+
attachments.header.idx = Idx
|
|
218
|
+
attachments.header.length = 길이(문자/토큰)
|
|
219
|
+
attachments.header.name = 이름
|
|
220
|
+
attachments.header.path = 경로
|
|
221
|
+
attachments.header.size = 크기
|
|
222
|
+
attachments.header.store = 벡터 스토어
|
|
223
|
+
attachments.options.label = 옵션
|
|
224
|
+
attachments.paste.file = 클립보드 첨부
|
|
225
|
+
attachments.paste.img = 클립보드 이미지
|
|
226
|
+
attachments.paste.success = 클립보드에서 첨부를 추가했습니다
|
|
227
|
+
attachments.send_clear = 전송 후 목록 지우기
|
|
228
|
+
attachments.tab = 첨부
|
|
229
|
+
attachments_uploaded.btn.clear = 지우기
|
|
230
|
+
attachments_uploaded.btn.sync = 동기화
|
|
231
|
+
attachments_uploaded.btn.sync.all = 모든 스토어
|
|
232
|
+
attachments_uploaded.btn.sync.current = 현재만
|
|
233
|
+
attachments_uploaded.clear.confirm = 경고: 원격 서버에서 이 파일들을 모두 삭제하시겠습니까?
|
|
234
|
+
attachments_uploaded.delete.confirm = 경고: 원격 서버에서 이 파일을 삭제하시겠습니까?
|
|
235
|
+
attachments_uploaded.sync.tip = 팁: '동기화'를 클릭하여 OpenAI에서 파일 목록을 가져오세요
|
|
236
|
+
attachments_uploaded.tab = 업로드됨
|
|
237
|
+
audio.auto_turn = 자동(VAD)
|
|
238
|
+
audio.cache.clear.confirm = 캐시된 오디오 파일을 모두 삭제하시겠습니까?
|
|
239
|
+
audio.cache.clear.success = 확인. 오디오 캐시 파일을 모두 지웠습니다.
|
|
240
|
+
audio.control.btn = 음성 제어
|
|
241
|
+
audio.loop = 반복
|
|
242
|
+
audio.magic_word.detected = 매직 워드가 감지되었습니다!
|
|
243
|
+
audio.magic_word.invalid = 매직 워드가 아닙니다 :(
|
|
244
|
+
audio.magic_word.please = 매직 워드를 말해 주세요...
|
|
245
|
+
audio.speak.btn = 마이크
|
|
246
|
+
audio.speak.btn.continuous = 연속 녹음
|
|
247
|
+
audio.speak.btn.stop = 중지
|
|
248
|
+
audio.speak.btn.stop.tooltip = 마이크 듣기를 중지하려면 클릭
|
|
249
|
+
audio.speak.btn.tooltip = 마이크 듣기를 시작하려면 클릭
|
|
250
|
+
audio.speak.energy = 마이크 볼륨
|
|
251
|
+
audio.speak.ignoring = 무시됨(접두어 없음)
|
|
252
|
+
audio.speak.now = 지금 말하세요...
|
|
253
|
+
audio.speak.sending = 전송 중...
|
|
254
|
+
audio.speak.wait = 대기...
|
|
255
|
+
audio.transcribe.auto_convert = 전사 전에 항상 비디오를 mp3로 변환(ffmpeg 필요)
|
|
256
|
+
audio.transcribe.clear.confirm = 현재 전사 내용을 지울까요?
|
|
257
|
+
audio.transcribe.confirm = 이 오디오/비디오 파일을 전사하시겠습니까?
|
|
258
|
+
audio.transcribe.open = 오디오/비디오 파일을 열고 전사...
|
|
259
|
+
audio.transcribe.result.finished = 완료: {path}
|
|
260
|
+
audio.transcribe.result.selected = 선택된 파일: {path}
|
|
261
|
+
audio.transcribe.tip = 팁: "열기..."를 클릭해 파일의 오디오 전사를 시작하세요. 플러그인 설정의 오디오 입력 제공자가 사용됩니다.
|
|
262
|
+
audio.transcribe.title = 오디오 전사
|
|
263
|
+
calendar.day.label = 라벨 색상 설정...
|
|
264
|
+
calendar.day.label.color.blue = 파랑
|
|
265
|
+
calendar.day.label.color.default = 기본
|
|
266
|
+
calendar.day.label.color.green = 초록
|
|
267
|
+
calendar.day.label.color.indigo = 남색
|
|
268
|
+
calendar.day.label.color.orange = 주황
|
|
269
|
+
calendar.day.label.color.red = 빨강
|
|
270
|
+
calendar.day.label.color.violet = 보라
|
|
271
|
+
calendar.day.label.color.yellow = 노랑
|
|
272
|
+
calendar.day.search = 대화 표시
|
|
273
|
+
calendar.note.label = 일자 메모
|
|
274
|
+
changed.confirm = 계속하기 전에 변경 사항을 저장할까요?
|
|
275
|
+
chatbox.label = 채팅
|
|
276
|
+
chatbox.plugins = 플러그인
|
|
277
|
+
chat.name.bot = AI
|
|
278
|
+
chat.name.user = 나
|
|
279
|
+
chat.prefix.attachment = 첨부
|
|
280
|
+
chat.prefix.doc = 소스(LlamaIndex)
|
|
281
|
+
chat.prefix.file = 파일
|
|
282
|
+
chat.prefix.img = 이미지
|
|
283
|
+
chat.prefix.url = 링크
|
|
284
|
+
clipboard.copied = 클립보드에 복사됨.
|
|
285
|
+
clipboard.copied_to = 클립보드에 복사됨:
|
|
286
|
+
cmd.enabled = + 도구
|
|
287
|
+
cmd.tip = 팁: 플러그인의 도구 실행을 활성화하려면 "+ 도구" 옵션을 켜야 합니다.
|
|
288
|
+
coming_soon = 곧 제공...
|
|
289
|
+
common.down = 아래로 이동
|
|
290
|
+
common.up = 위로 이동
|
|
291
|
+
computer_use.sandbox = 샌드박스(Playwright)
|
|
292
|
+
computer_use.sandbox.tooltip = Playwright를 사용해 샌드박스 환경에서 웹 자동화를 실행합니다(보안상 권장).\n정보: Playwright가 설치되고 올바르게 설정되어야 합니다.
|
|
293
|
+
confirm.assistant.delete = 어시스턴트를 삭제할까요?
|
|
294
|
+
confirm.assistant.files.clear = 파일을 지울까요(로컬만)?
|
|
295
|
+
confirm.assistant.functions.clear = 함수 목록을 지우시겠습니까?
|
|
296
|
+
confirm.assistant.functions.import = 활성 플러그인에서 함수를 가져올까요?\n정보: 같은 이름의 모든 함수는 교체됩니다!
|
|
297
|
+
confirm.assistant.import = API에서 모든 어시스턴트를 가져올까요?
|
|
298
|
+
confirm.ctx.delete = 그룹을 삭제할까요?
|
|
299
|
+
confirm.ctx.delete.all = 그룹과 모든 항목을 삭제할까요?
|
|
300
|
+
confirm.img.delete = 디스크에서 파일을 삭제할까요?
|
|
301
|
+
confirm.preset.avatar.delete = 아바타를 삭제하시겠습니까?
|
|
302
|
+
confirm.preset.clear = 프리셋을 지우시겠습니까?
|
|
303
|
+
confirm.preset.delete = 이 프리셋을 삭제하시겠습니까?
|
|
304
|
+
confirm.preset.overwrite = 프리셋이 존재합니다. 덮어쓸까요?
|
|
305
|
+
confirm.preset.restore = 이 모드의 기본 프리셋을 복원할까요?
|
|
306
|
+
confirm.profile.delete = 프로필을 삭제하시겠습니까? 목록에서만 제거됩니다.
|
|
307
|
+
confirm.profile.delete_all = 프로필을(프로필 작업 디렉터리의 모든 설정 파일 및 사용자 데이터 파일과 함께) 삭제하시겠습니까?
|
|
308
|
+
confirm.profile.reset = 프로필을 기본 설정으로 복원하시겠습니까? 경고: 모든 구성 파일과 컨텍스트 DB가 제거됩니다! 데이터 디렉터리는 유지됩니다. 제거하려면 수동으로 삭제하거나 삭제 옵션을 사용하세요.
|
|
309
|
+
confirm.remote_store.clear = 벡터 스토어를 지울까요(로컬만)?
|
|
310
|
+
confirm.remote_store.file.delete = API에서 선택한 파일을 삭제할까요?
|
|
311
|
+
confirm.remote_store.files.truncate = 모든 어시스턴트에서 모든 파일을 제거하시겠습니까?
|
|
312
|
+
confirm.remote_store.files.truncate.store = 선택한 스토어에서 모든 파일을 제거하시겠습니까?
|
|
313
|
+
confirm.remote_store.import = API에서 모든 벡터 스토어를 가져올까요?
|
|
314
|
+
confirm.remote_store.import_files = API에서 모든 파일을 가져올까요?
|
|
315
|
+
confirm.remote_store.import_files.store = 현재 스토어 파일을 API에서 가져올까요?
|
|
316
|
+
confirm.remote_store.refresh = 모든 스토어를 새로고침할까요?
|
|
317
|
+
confirm.remote_store.truncate = API의 모든 벡터 스토어를 삭제할까요?
|
|
318
|
+
context.btn.clear = 메모리 지우기
|
|
319
|
+
context.items = 항목
|
|
320
|
+
context.label = 컨텍스트
|
|
321
|
+
context_menu.zoom = 확대/축소
|
|
322
|
+
context_menu.zoom.in = 확대
|
|
323
|
+
context_menu.zoom.out = 축소
|
|
324
|
+
context.tokens = 토큰
|
|
325
|
+
ctx.delete.all.confirm = 모든 히스토리 컨텍스트를 삭제하시겠습니까?
|
|
326
|
+
ctx.delete.confirm = 삭제하시겠습니까?
|
|
327
|
+
ctx.delete.item.confirm = 대화 항목을 삭제할까요?
|
|
328
|
+
ctx.delete.item.link = 삭제
|
|
329
|
+
ctx.extra.audio = 응답 읽기(오디오)
|
|
330
|
+
ctx.extra.collapse = 접기
|
|
331
|
+
ctx.extra.copied = 복사됨
|
|
332
|
+
ctx.extra.copy = 복사
|
|
333
|
+
ctx.extra.copy_code = 복사
|
|
334
|
+
ctx.extra.delete = 이 항목 삭제
|
|
335
|
+
ctx.extra.edit = 편집 후 재생성(이 지점부터)
|
|
336
|
+
ctx.extra.expand = 펼치기
|
|
337
|
+
ctx.extra.join = 이전 응답에 추가(병합)
|
|
338
|
+
ctx.extra.preview = 미리보기
|
|
339
|
+
ctx.extra.reply = 응답 재생성(이 지점부터)
|
|
340
|
+
ctx.extra.run = 실행
|
|
341
|
+
ctx.join.item.confirm = 이 응답을 이전 응답에 추가(병합)할까요?
|
|
342
|
+
ctx.list.label = 컨텍스트 및 기록
|
|
343
|
+
ctx.list.search.placeholder = 검색...
|
|
344
|
+
ctx.new = 새로 만들기
|
|
345
|
+
ctx.new.prefix = 새
|
|
346
|
+
ctx.replay.item.confirm = 이 지점부터 응답을 재생성할까요?
|
|
347
|
+
ctx.reset_meta.confirm = 이 컨텍스트를 초기화하시겠습니까? 모든 항목이 삭제됩니다!
|
|
348
|
+
ctx.tokens = 토큰
|
|
349
|
+
db.backup = 자동 백업
|
|
350
|
+
db.backup.tip = 삭제/잘라내기/업데이트 전에 백업 생성
|
|
351
|
+
db.limit = 제한
|
|
352
|
+
db.next = 다음
|
|
353
|
+
db.order = 순서
|
|
354
|
+
db.page = 페이지
|
|
355
|
+
db.prev = 이전
|
|
356
|
+
db.refresh = 새로고침
|
|
357
|
+
db.search = 검색
|
|
358
|
+
db.search_in = 위치:
|
|
359
|
+
db.search.placeholder = 검색...
|
|
360
|
+
db.sort = 정렬 기준
|
|
361
|
+
db.table = 테이블:
|
|
362
|
+
db.time_convert = 시간 변환()
|
|
363
|
+
db.time_convert.tip = 타임스탬프 열을 YYYY-MM-DD HH:MM:SS 형식으로 변환
|
|
364
|
+
dialog.about.build = 빌드
|
|
365
|
+
dialog.about.docs = 문서
|
|
366
|
+
dialog.about.email = 이메일
|
|
367
|
+
dialog.about.github = GitHub
|
|
368
|
+
dialog.about.title = 정보
|
|
369
|
+
dialog.about.version = 버전
|
|
370
|
+
dialog.about.website = 공식 웹사이트
|
|
371
|
+
dialog.agent.not_selected = 먼저 에이전트를 선택하거나 추가하세요.
|
|
372
|
+
dialog.assistant = 어시스턴트 생성/편집
|
|
373
|
+
dialog.assistant.btn.clear_func = 지우기
|
|
374
|
+
dialog.assistant.btn.close = 취소
|
|
375
|
+
dialog.assistant.btn.current = 현재 사용
|
|
376
|
+
dialog.assistant.btn.import_func = 함수 가져오기
|
|
377
|
+
dialog.assistant.btn.save = 저장
|
|
378
|
+
dialog.assistant.btn.store = 벡터 스토어
|
|
379
|
+
dialog.changelog.title = 변경 로그
|
|
380
|
+
dialog.confirm.no = 아니요
|
|
381
|
+
dialog.confirm.title = 확인
|
|
382
|
+
dialog.confirm.yes = 예
|
|
383
|
+
dialog.create.dismiss = 취소
|
|
384
|
+
dialog.create.title = 이름
|
|
385
|
+
dialog.create.update = 생성
|
|
386
|
+
dialog.css.restore.confirm = 기본 CSS를 복원할까요? (커스텀 CSS 파일의 모든 변경 사항은 .backup 파일로 이동됩니다)
|
|
387
|
+
dialog.css.restore.confirm.success = 확인. 기본 CSS 스타일로 복원했습니다.
|
|
388
|
+
dialog.editor.btn.defaults = 복원
|
|
389
|
+
dialog.editor.btn.defaults.app = 기본값 불러오기
|
|
390
|
+
dialog.editor.btn.save = 저장
|
|
391
|
+
dialog.editor.label = 설정 파일 편집 중 - 변경 사항을 적용하려면 재시작이 필요합니다.
|
|
392
|
+
dialog.editor.title = JSON/CSS 파일 편집
|
|
393
|
+
dialog.find.btn.clear = 지우기
|
|
394
|
+
dialog.find.btn.find_next = 다음 찾기
|
|
395
|
+
dialog.find.btn.find_prev = 이전 찾기
|
|
396
|
+
dialog.find.title = 찾기...
|
|
397
|
+
dialog.html_canvas.title = HTML/JS 캔버스(Chromium)
|
|
398
|
+
dialog.image.title = 생성된 이미지
|
|
399
|
+
dialog.interpreter.title = 파이썬 코드 인터프리터
|
|
400
|
+
dialog.license.accept = 동의합니다
|
|
401
|
+
dialog.license.label = 이 소프트웨어를 사용함으로써 다음 약관에 동의하게 됩니다:
|
|
402
|
+
dialog.license.title = 라이선스
|
|
403
|
+
dialog.logger.btn.clear = 지우기
|
|
404
|
+
dialog.logger.title = 로거
|
|
405
|
+
dialog.models.editor = 모델 편집기
|
|
406
|
+
dialog.models.editor.btn.defaults.app = 기본값 불러오기
|
|
407
|
+
dialog.models.editor.btn.defaults.user = 변경 취소
|
|
408
|
+
dialog.models.editor.btn.new = 생성
|
|
409
|
+
dialog.models.editor.btn.save = 저장
|
|
410
|
+
dialog.models.editor.defaults.app.confirm = 모델 공장 설정을 불러올까요?
|
|
411
|
+
dialog.models.editor.defaults.app.result = 모델 공장 설정으로 복원되었습니다.
|
|
412
|
+
dialog.models.editor.defaults.user.confirm = 현재 변경 사항을 취소할까요?
|
|
413
|
+
dialog.models.editor.defaults.user.result = 사용자 모델 설정으로 복원되었습니다
|
|
414
|
+
dialog.models.editor.delete.confirm = 이 모델을 삭제하시겠습니까?
|
|
415
|
+
dialog.models.importer = 모델 가져오기...
|
|
416
|
+
dialog.models.importer.btn.cancel = 취소
|
|
417
|
+
dialog.models.importer.btn.refresh = 새로고침
|
|
418
|
+
dialog.models.importer.btn.save = 저장
|
|
419
|
+
dialog.ollama.model_not_found = 요청한 모델({model})이 Ollama에 없습니다.\n먼저 다음 명령으로 모델을 다운로드하세요:\nollama pull {model}
|
|
420
|
+
dialog.ollama.not_installed = Ollama가 설치되어 있지 않거나 실행 중이 아닙니다.\n다음에서 Ollama를 먼저 설치하세요:\nhttps://ollama.com/download
|
|
421
|
+
dialog.plugin_settings = 플러그인 설정
|
|
422
|
+
dialog.plugin.settings.btn.defaults.app = 기본값 불러오기
|
|
423
|
+
dialog.plugin.settings.btn.defaults.user = 변경 취소
|
|
424
|
+
dialog.plugin.settings.btn.save = 저장
|
|
425
|
+
dialog.plugin.settings.defaults.app.confirm = 플러그인 공장 설정을 불러올까요?
|
|
426
|
+
dialog.plugin.settings.defaults.app.result = 플러그인 공장 설정으로 복원되었습니다.
|
|
427
|
+
dialog.plugin.settings.defaults.user.confirm = 현재 변경 사항을 취소할까요?
|
|
428
|
+
dialog.plugin.settings.defaults.user.result = 플러그인 사용자 설정으로 복원되었습니다
|
|
429
|
+
dialog.preset = 프리셋 편집기
|
|
430
|
+
dialog.preset.btn.current = 현재 사용
|
|
431
|
+
dialog.preset.btn.save = 저장
|
|
432
|
+
dialog.preset.plugins.editor = 플러그인 프리셋 편집기
|
|
433
|
+
dialog.profile.alert.delete.current = 현재 활성 프로필은 삭제할 수 없습니다!
|
|
434
|
+
dialog.profile.alert.duplicate.not_empty = 디렉터리가 비어 있지 않고 이전 설정이 없습니다! 중단합니다.\n\n팁: 기존 작업 디렉터리 또는 빈 디렉터리를 선택해 그 안에 새 작업 디렉터리를 만드세요.
|
|
435
|
+
dialog.profile.alert.name.empty = 이름은 비워둘 수 없습니다!
|
|
436
|
+
dialog.profile.alert.path.empty = 작업 디렉터리 경로는 비워둘 수 없습니다!
|
|
437
|
+
dialog.profile.alert.path.not_exists = 디렉터리가 존재하지 않습니다!
|
|
438
|
+
dialog.profile.alert.path.same = 원본과 대상 경로가 같습니다! 중단합니다.
|
|
439
|
+
dialog.profile.alert.src.empty = 원본 프로필을 찾을 수 없습니다! 중단합니다.
|
|
440
|
+
dialog.profile.checkbox.include_datadir = + "data" 디렉터리
|
|
441
|
+
dialog.profile.checkbox.include_db = + 데이터베이스
|
|
442
|
+
dialog.profile.checkbox.switch = 생성된 프로필로 전환
|
|
443
|
+
dialog.profile.editor = 프로필
|
|
444
|
+
dialog.profile.item.btn.create = 생성
|
|
445
|
+
dialog.profile.item.btn.dismiss = 취소
|
|
446
|
+
dialog.profile.item.btn.duplicate = 여기에 복제
|
|
447
|
+
dialog.profile.item.btn.update = 업데이트
|
|
448
|
+
dialog.profile.item.editor = 프로필
|
|
449
|
+
dialog.profile.name.label = 프로필 이름
|
|
450
|
+
dialog.profile.new = 새 프로필
|
|
451
|
+
dialog.profile.status.changed = 프로필이 다음으로 변경됨:
|
|
452
|
+
dialog.profile.status.created = 프로필이 생성되었습니다.
|
|
453
|
+
dialog.profile.status.deleted = 프로필이 삭제되었습니다
|
|
454
|
+
dialog.profile.status.duplicated = 프로필이 복제되었습니다.
|
|
455
|
+
dialog.profile.status.removed = 목록에서 프로필이 제거되었습니다
|
|
456
|
+
dialog.profile.status.updated = 프로필이 업데이트되었습니다.
|
|
457
|
+
dialog.profile.tip = 새 프로필을 만들면 별도의 설정, 다른 컨텍스트 기록 및 사용자 데이터를 사용할 수 있으며, 빠르게 전환할 수 있습니다.
|
|
458
|
+
dialog.profile.workdir.label = 작업 디렉터리(설정 파일 및 사용자 데이터용 디렉터리)
|
|
459
|
+
dialog.remote_store = 원격 벡터 스토어(OpenAI, Google, xAI)
|
|
460
|
+
dialog.remote_store.alert.assign = 먼저 어시스턴트에 벡터 스토어를 할당하세요.
|
|
461
|
+
dialog.remote_store.alert.select = 먼저 벡터 스토어를 선택하세요.
|
|
462
|
+
dialog.remote_store.btn.close = 취소
|
|
463
|
+
dialog.remote_store.btn.new = 생성
|
|
464
|
+
dialog.remote_store.btn.refresh_status = 상태 새로고침
|
|
465
|
+
dialog.remote_store.btn.save = 저장
|
|
466
|
+
dialog.remote_store.btn.upload.dir = + 디렉터리
|
|
467
|
+
dialog.remote_store.btn.upload.files = + 파일
|
|
468
|
+
dialog.remote_store.delete.confirm = OpenAI 벡터 스토어를 삭제하시겠습니까?
|
|
469
|
+
dialog.remote_store.google = Google 벡터 스토어
|
|
470
|
+
dialog.remote_store.menu.all = 모든 스토어...
|
|
471
|
+
dialog.remote_store.menu.all.clear_files = 파일 지우기(전체, 로컬만)
|
|
472
|
+
dialog.remote_store.menu.all.clear_store = 벡터 스토어 지우기(전체, 로컬만)
|
|
473
|
+
dialog.remote_store.menu.all.import_all = 모두 가져오기(전체, 스토어+파일)
|
|
474
|
+
dialog.remote_store.menu.all.import_files = 파일만 가져오기(전체)
|
|
475
|
+
dialog.remote_store.menu.all.refresh_store = 모든 상태 새로고침
|
|
476
|
+
dialog.remote_store.menu.all.truncate_files = 파일 잘라내기(전체, 로컬+원격)
|
|
477
|
+
dialog.remote_store.menu.all.truncate_store = 벡터 스토어 잘라내기(전체, 로컬+원격)
|
|
478
|
+
dialog.remote_store.menu.current = 현재 스토어...
|
|
479
|
+
dialog.remote_store.menu.current.clear_files = 파일 지우기(로컬만)
|
|
480
|
+
dialog.remote_store.menu.current.delete = 스토어 삭제(+파일, 로컬+원격)
|
|
481
|
+
dialog.remote_store.menu.current.import_files = 파일 가져오기
|
|
482
|
+
dialog.remote_store.menu.current.refresh_store = 상태 새로고침
|
|
483
|
+
dialog.remote_store.menu.current.truncate_files = 파일 잘라내기(로컬+원격)
|
|
484
|
+
dialog.remote_store.openai = OpenAI 벡터 스토어
|
|
485
|
+
dialog.rename.dismiss = 취소
|
|
486
|
+
dialog.rename.title = 이름 변경
|
|
487
|
+
dialog.rename.update = 이름 업데이트
|
|
488
|
+
dialog.settings = 설정
|
|
489
|
+
dialog.settings.btn.defaults.app = 기본값 불러오기
|
|
490
|
+
dialog.settings.btn.defaults.user = 변경 취소
|
|
491
|
+
dialog.settings.btn.save = 저장
|
|
492
|
+
dialog.settings.defaults.app.result = 공장 설정으로 복원되었습니다. 이전 설정은 다음에 저장됨: config.json.backup.
|
|
493
|
+
dialog.settings.defaults.user.result = 사용자 설정으로 복원되었습니다
|
|
494
|
+
dialog.start.btn = 설정으로 이동...
|
|
495
|
+
dialog.start.link = https://platform.openai.com/account/api-keys
|
|
496
|
+
dialog.start.settings.text = 이미 API 키가 있다면 설정 창에서 구성할 수 있습니다.\n"설정으로 이동" 버튼을 누른 뒤 API 키 필드에 API 키를 붙여넣으세요.
|
|
497
|
+
dialog.start.title = API 키가 설정되지 않았습니다
|
|
498
|
+
dialog.start.title.text = 이 제공자에 대한 API 키가 아직 설정되지 않았습니다.\n\n메뉴 설정 -> Settings -> API Keys로 이동하여,\n제공자 탭의 API Key 필드에 API 키를 붙여넣으세요:
|
|
499
|
+
dialog.translator.title = 번역기
|
|
500
|
+
dialog.url.dismiss = 취소
|
|
501
|
+
dialog.url.tip = 추가 컨텍스트로 첨부할 웹 페이지 URL을 입력하세요(예: https://pl.wikipedia.org/wiki/Elon_Musk), 또는 전사할 YouTube 비디오(예: https://www.youtube.com/watch?v=CRRlbK5w8AE).
|
|
502
|
+
dialog.url.title = 추가 컨텍스트를 제공하기 위해 웹 또는 외부 콘텐츠 URL을 추가하세요.
|
|
503
|
+
dialog.url.update = 추가
|
|
504
|
+
dialog.workdir.change.confirm = 작업 디렉터리를 다음으로 변경/이동하시겠습니까?\n{path}?
|
|
505
|
+
dialog.workdir.change.empty.alert = 디렉터리가 비어 있지 않습니다! 중단합니다.
|
|
506
|
+
dialog.workdir.reset.btn = 현재
|
|
507
|
+
dialog.workdir.result.directory_not_exists = 대상 디렉터리가 존재하지 않습니다!
|
|
508
|
+
dialog.workdir.result.failed = 작업 디렉터리 이동 중 오류가 발생했습니다.
|
|
509
|
+
dialog.workdir.result.no_free_space = 디스크 공간이 부족합니다! 필요: {required}, 여유 공간: {free}.
|
|
510
|
+
dialog.workdir.result.same_directory = 이동할 것이 없습니다.
|
|
511
|
+
dialog.workdir.result.success = [확인] 현재 작업 디렉터리는 다음으로 설정됨: {path}
|
|
512
|
+
dialog.workdir.result.wait = 잠시만 기다려 주세요... 현재 작업 디렉터리를 이동 중... 시간이 걸릴 수 있습니다...
|
|
513
|
+
dialog.workdir.tip = 디스크에서 디렉터리를 선택하고 '변경/이동...'을 클릭해 현재 작업 디렉터리를 새 위치로 이동하거나, 기존 디렉터리를 현재 작업 디렉터리로 설정할 수 있습니다. (이동 시) 필요 디스크 공간: {size}
|
|
514
|
+
dialog.workdir.title = 작업 디렉터리 변경
|
|
515
|
+
dialog.workdir.update.btn = 변경/이동...
|
|
516
|
+
dialog.workdir.update.confirm = 기존 WORKDIR: 디렉터리 "{path}"가 비어 있지 않으며 다른 workdir의 데이터를 이미 포함하고 있습니다. 데이터를 이동하지 않고 이 기존 디렉터리만 현재 workdir로 설정할까요?
|
|
517
|
+
dictionary.assistant.tool.function.desc = 설명(선택)
|
|
518
|
+
dictionary.assistant.tool.function.name = 함수 이름
|
|
519
|
+
dictionary.assistant.tool.function.params = 함수 매개변수(JSON 객체)
|
|
520
|
+
dictionary.cmd.param.description = 설명(선택)
|
|
521
|
+
dictionary.cmd.param.name = 매개변수 이름
|
|
522
|
+
dictionary.cmd.param.required = 필수(선택)
|
|
523
|
+
dictionary.cmd.param.type = 매개변수 타입
|
|
524
|
+
dictionary.config.access.audio.event.speech.disabled.muted_action = 음소거된 동작
|
|
525
|
+
dictionary.config.access.shortcuts.action = 트리거할 동작
|
|
526
|
+
dictionary.config.access.shortcuts.key = 키보드 키
|
|
527
|
+
dictionary.config.access.shortcuts.key_modifier = 보조키
|
|
528
|
+
dictionary.config.llama.hub.loaders.args.loader = 데이터 로더
|
|
529
|
+
dictionary.config.llama.hub.loaders.args.name = 키워드 인자 이름
|
|
530
|
+
dictionary.config.llama.hub.loaders.args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
531
|
+
dictionary.config.llama.hub.loaders.args.value = 키워드 인자 값
|
|
532
|
+
dictionary.config.llama.hub.loaders.ext = 파일 확장자(여러 개면 콤마로 구분)
|
|
533
|
+
dictionary.config.llama.hub.loaders.loader = LlamaHub의 로더 이름(download_loader()에 전달)
|
|
534
|
+
dictionary.config.llama.idx.custom_meta.extensions = 파일 확장자(들), 콤마로 구분. 모든 파일에 적용하려면 * 사용
|
|
535
|
+
dictionary.config.llama.idx.custom_meta.key = 메타데이터 키(필드 이름)
|
|
536
|
+
dictionary.config.llama.idx.custom_meta.value = 메타데이터 값. 허용 플레이스홀더: {path}, {relative_path} {filename}, {dirname}, {relative_dir} {ext}, {size}, {mtime}, {date}, {date_time}, {time}, {timestamp}. 빈 값으로 설정하면 지정 키의 필드를 제거합니다.
|
|
537
|
+
dictionary.config.llama.idx.custom_meta.web.key = 메타데이터 키(필드 이름)
|
|
538
|
+
dictionary.config.llama.idx.custom_meta.web.loader = 데이터 타입(로더)
|
|
539
|
+
dictionary.config.llama.idx.custom_meta.web.value = 메타데이터 값. 허용 플레이스홀더: {mtime}, {date}, {date_time}, {time}, {timestamp} + {data loader args}
|
|
540
|
+
dictionary.config.llama.idx.embeddings.args.name = 키워드 인자 이름
|
|
541
|
+
dictionary.config.llama.idx.embeddings.args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
542
|
+
dictionary.config.llama.idx.embeddings.args.value = 키워드 인자 값
|
|
543
|
+
dictionary.config.llama.idx.embeddings.env.name = ENV 이름(os.environ에 설정)
|
|
544
|
+
dictionary.config.llama.idx.embeddings.env.value = ENV 값. {config_key}로 앱 설정 값을 참조할 수 있습니다.
|
|
545
|
+
dictionary.config.llama.idx.list.id = ID(인덱스 디렉터리 이름)
|
|
546
|
+
dictionary.config.llama.idx.list.model_embed = 임베딩(인덱싱)용 모델, 기본값: %MODEL_DEFAULT_MINI%
|
|
547
|
+
dictionary.config.llama.idx.list.model_query = 질의용 모델
|
|
548
|
+
dictionary.config.llama.idx.list.name = 이름
|
|
549
|
+
dictionary.config.llama.idx.storage.args.name = 키워드 인자 이름
|
|
550
|
+
dictionary.config.llama.idx.storage.args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
551
|
+
dictionary.config.llama.idx.storage.args.value = 키워드 인자 값
|
|
552
|
+
dictionary.model.langchain.args.name = 키워드 인자 이름
|
|
553
|
+
dictionary.model.langchain.args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
554
|
+
dictionary.model.langchain.args.value = 키워드 인자 값
|
|
555
|
+
dictionary.model.langchain.env.name = ENV 이름(os.environ에 설정)
|
|
556
|
+
dictionary.model.langchain.env.value = ENV 값. {config_key}로 앱 설정 값을 참조할 수 있습니다.
|
|
557
|
+
dictionary.model.llama_index.args.name = 키워드 인자 이름
|
|
558
|
+
dictionary.model.llama_index.args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
559
|
+
dictionary.model.llama_index.args.value = 키워드 인자 값
|
|
560
|
+
dictionary.model.llama_index.env.name = ENV 이름(os.environ에 설정)
|
|
561
|
+
dictionary.model.llama_index.env.value = ENV 값. {config_key}로 앱 설정 값을 참조할 수 있습니다.
|
|
562
|
+
dictionary.plugin.agent.prompts.enabled = 활성화(켜기/끄기)
|
|
563
|
+
dictionary.plugin.agent.prompts.name = 이름
|
|
564
|
+
dictionary.plugin.agent.prompts.prompt = 자율 모드를 처리하기 위한 프롬프트
|
|
565
|
+
dictionary.plugin.audio_input.bing_args.name = 키워드 인자 이름
|
|
566
|
+
dictionary.plugin.audio_input.bing_args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
567
|
+
dictionary.plugin.audio_input.bing_args.value = 키워드 인자 값
|
|
568
|
+
dictionary.plugin.audio_input.google_args.name = 키워드 인자 이름
|
|
569
|
+
dictionary.plugin.audio_input.google_args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
570
|
+
dictionary.plugin.audio_input.google_args.value = 키워드 인자 값
|
|
571
|
+
dictionary.plugin.audio_input.google_cloud_args.name = 키워드 인자 이름
|
|
572
|
+
dictionary.plugin.audio_input.google_cloud_args.type = 타입: dict는 JSON 문자열, list는 item1,item2 등
|
|
573
|
+
dictionary.plugin.audio_input.google_cloud_args.value = 키워드 인자 값
|
|
574
|
+
dictionary.plugin.cmd_api.cmds.enabled = 활성화(True/False)
|
|
575
|
+
dictionary.plugin.cmd_api.cmds.endpoint = 엔드포인트: API 엔드포인트 URL, {param}을 GET 파라미터 플레이스홀더로 사용
|
|
576
|
+
dictionary.plugin.cmd_api.cmds.get_params = GET 파라미터: 콤마로 구분된 목록; 엔드포인트 URL에 추가할 GET 파라미터
|
|
577
|
+
dictionary.plugin.cmd_api.cmds.headers = 헤더: Authorization, API 키 등 추가 요청 헤더 딕셔너리를 JSON 객체로 제공
|
|
578
|
+
dictionary.plugin.cmd_api.cmds.instruction = 지침: 이 API 호출을 언제/어떻게 사용할지에 대한 모델 설명
|
|
579
|
+
dictionary.plugin.cmd_api.cmds.name = 이름: 고유 API 호출 이름(ID)
|
|
580
|
+
dictionary.plugin.cmd_api.cmds.post_json = POST JSON: POST JSON 요청에 보낼 JSON 객체 템플릿, %param%을 POST 파라미터 플레이스홀더로 사용
|
|
581
|
+
dictionary.plugin.cmd_api.cmds.post_params = POST 파라미터: 콤마로 구분된 목록; POST 요청에 보낼 POST 파라미터
|
|
582
|
+
dictionary.plugin.cmd_api.cmds.type = 요청 타입: 기본 GET은 GET, 인코딩된 POST 파라미터는 POST, JSON 바디는 POST_JSON
|
|
583
|
+
dictionary.plugin.cmd_custom.cmds.cmd = 실행할 명령
|
|
584
|
+
dictionary.plugin.cmd_custom.cmds.enabled = 활성화(True/False)
|
|
585
|
+
dictionary.plugin.cmd_custom.cmds.instruction = 지침 프롬프트
|
|
586
|
+
dictionary.plugin.cmd_custom.cmds.name = 명령 이름
|
|
587
|
+
dictionary.plugin.cmd_custom.cmds.params = 파라미터 목록(콤마로 구분)
|
|
588
|
+
dictionary.plugin.crontab.crontab.crontab = Crontab(크론 문법)
|
|
589
|
+
dictionary.plugin.crontab.crontab.enabled = 활성화(True/False)
|
|
590
|
+
dictionary.plugin.crontab.crontab.preset = 사용할 프리셋
|
|
591
|
+
dictionary.plugin.crontab.crontab.prompt = 보낼 프롬프트
|
|
592
|
+
dictionary.plugin.extra_prompt.prompts.enabled = 활성(True/False)
|
|
593
|
+
dictionary.plugin.extra_prompt.prompts.name = 이름
|
|
594
|
+
dictionary.plugin.extra_prompt.prompts.prompt = 시스템 프롬프트에 추가할 프롬프트
|
|
595
|
+
dictionary.plugin.self_loop.prompts.enabled = 활성(True/False)
|
|
596
|
+
dictionary.plugin.self_loop.prompts.name = 이름
|
|
597
|
+
dictionary.plugin.self_loop.prompts.prompt = 프롬프트(시스템 지침)
|
|
598
|
+
dictionary.preset.tool.function.desc = 설명(선택)
|
|
599
|
+
dictionary.preset.tool.function.name = 함수 이름
|
|
600
|
+
dictionary.preset.tool.function.params = 함수 매개변수(JSON 객체)
|
|
601
|
+
docker.build.finish = 성공! Docker 이미지가 빌드되었습니다. 이제 이전 명령의 실행을 다시 요청할 수 있습니다.
|
|
602
|
+
docker.build.start = Docker 이미지 빌드 중... 잠시만 기다려 주세요...
|
|
603
|
+
docker.image.build = Docker 이미지가 아직 빌드되지 않았습니다. 지금 빌드하며 시간이 걸릴 수 있습니다(한 번만 필요). 명령 실행이 일시 중지되었습니다. 빌드가 완료되면 명령을 다시 실행하세요.
|
|
604
|
+
docker.install = 샌드박스를 사용하려면 Docker 설치가 필요합니다. 시스템에서 Docker가 감지되지 않았습니다. 먼저 Docker를 설치하세요. 안내: https://docs.docker.com/engine/install/. 현재 명령 실행이 일시 중지되었습니다.
|
|
605
|
+
docker.install.snap = \n\nSNAP 버전: \n내장 Docker 데몬에 연결되어 있지 않습니다. 다음으로 슬롯을 연결하세요:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...그리고 앱을 재시작하세요.
|
|
606
|
+
dt.days_ago = {n}일 전
|
|
607
|
+
dt.month = 한 달 전
|
|
608
|
+
dt.today = 오늘
|
|
609
|
+
dt.week = 일주일 전
|
|
610
|
+
dt.weeks = {n}주 전
|
|
611
|
+
dt.yesterday = 어제
|
|
612
|
+
error.assistant_not_selected = 먼저 어시스턴트를 생성, 가져오기 또는 선택하세요!
|
|
613
|
+
eval.score = 점수
|
|
614
|
+
event.audio.app.started = 환영합니다!
|
|
615
|
+
event.audio.app.status = 현재 모드: {mode}.\n현재 대화: {ctx}, 마지막 업데이트 {last}.\n총 대화 수: {total}.
|
|
616
|
+
event.audio.calendar.add = 캘린더에 메모가 추가되었습니다.
|
|
617
|
+
event.audio.calendar.clear = 캘린더의 메모가 지워졌습니다.
|
|
618
|
+
event.audio.camera.captured = 카메라에서 이미지를 캡처했습니다.
|
|
619
|
+
event.audio.camera.disabled = 카메라가 비활성화되었습니다.
|
|
620
|
+
event.audio.camera.enabled = 카메라가 활성화되었습니다.
|
|
621
|
+
event.audio.cmd = 음성 명령: {cmd}
|
|
622
|
+
event.audio.cmd.unrecognized = 음성 명령을 인식하지 못했습니다.
|
|
623
|
+
event.audio.confirm = "I confirm the command"라는 텍스트로 다시 음성 입력을 보내 명령을 확인하세요.
|
|
624
|
+
event.audio.ctx.attachments.clear = 첨부 목록이 비었습니다.
|
|
625
|
+
event.audio.ctx.created = 새 컨텍스트가 생성되었습니다.
|
|
626
|
+
event.audio.ctx.current = 현재 대화: {ctx}, 마지막 업데이트: {last}.
|
|
627
|
+
event.audio.ctx.end = 완료되었습니다.
|
|
628
|
+
event.audio.ctx.last = 입력: {input}. AI 응답: {output}.
|
|
629
|
+
event.audio.ctx.rename = 컨텍스트 이름이 {ctx}(으)로 변경되었습니다.
|
|
630
|
+
event.audio.ctx.search.clear = 검색 문자열이 지워졌습니다.
|
|
631
|
+
event.audio.ctx.search.string = 발견된 기록: {num}.
|
|
632
|
+
event.audio.ctx.selected = 선택된 컨텍스트: {ctx}.
|
|
633
|
+
event.audio.input.append = 입력에 텍스트가 추가되었습니다.
|
|
634
|
+
event.audio.input.call = 입력 호출.
|
|
635
|
+
event.audio.input.disable = 오디오 입력이 비활성화되었습니다.
|
|
636
|
+
event.audio.input.enable = 오디오 입력이 활성화되었습니다.
|
|
637
|
+
event.audio.input.error = 입력 전송 중 오류가 발생했습니다.
|
|
638
|
+
event.audio.input.sent = 입력이 전송되었습니다.
|
|
639
|
+
event.audio.input.stopped = 입력이 중지되었습니다.
|
|
640
|
+
event.audio.input.voice.listen.started = 듣는 중입니다. 지금 말해주세요.
|
|
641
|
+
event.audio.input.voice.listen.stopped = 듣기가 중지되었습니다.
|
|
642
|
+
event.audio.model.selected = 선택된 모델: {model}
|
|
643
|
+
event.audio.mode.selected = 선택된 모드: {mode}
|
|
644
|
+
event.audio.note.add = 메모장에 메모가 추가되었습니다.
|
|
645
|
+
event.audio.notepad.clear = 메모장이 지워졌습니다.
|
|
646
|
+
event.audio.output.disable = 오디오 출력이 비활성화되었습니다.
|
|
647
|
+
event.audio.output.enable = 오디오 출력이 활성화되었습니다.
|
|
648
|
+
event.audio.preset.selected = 선택된 프리셋: {preset}
|
|
649
|
+
event.audio.tab.switch = 선택된 탭: {tab}.
|
|
650
|
+
event.audio.voice.control.sent = 확인.
|
|
651
|
+
event.audio.voice.control.started = 음성 제어가 활성화되었습니다.
|
|
652
|
+
event.audio.voice.control.stopped = 음성 제어가 비활성화되었습니다.
|
|
653
|
+
event.audio.voice.control.toggle = 음성 제어가 토글되었습니다.
|
|
654
|
+
event.audio.voice.control.unrecognized = 인식되지 않은 명령입니다.
|
|
655
|
+
event.control.app.exit = 앱: 종료
|
|
656
|
+
event.control.app.status = 앱: 상태
|
|
657
|
+
event.control.audio.input.disable = 오디오 입력: 비활성화
|
|
658
|
+
event.control.audio.input.enable = 오디오 입력: 활성화
|
|
659
|
+
event.control.audio.output.disable = 오디오 출력: 비활성화
|
|
660
|
+
event.control.audio.output.enable = 오디오 출력: 활성화
|
|
661
|
+
event.control.calendar.add = 캘린더에 메모가 추가되었습니다.
|
|
662
|
+
event.control.calendar.clear = 캘린더의 메모가 지워졌습니다.
|
|
663
|
+
event.control.calendar.read = 캘린더: 읽기
|
|
664
|
+
event.control.camera.capture = 카메라: 캡처
|
|
665
|
+
event.control.camera.disable = 카메라: 비활성화
|
|
666
|
+
event.control.camera.enable = 카메라: 활성화
|
|
667
|
+
event.control.cmd.confirm = 확인되었습니다.
|
|
668
|
+
event.control.cmd.list = 명령 목록(도움말).
|
|
669
|
+
event.control.ctx.attachments.clear = 첨부: 지우기
|
|
670
|
+
event.control.ctx.current = 컨텍스트: 현재
|
|
671
|
+
event.control.ctx.input.append = 입력: 추가
|
|
672
|
+
event.control.ctx.input.clear = 입력: 지우기
|
|
673
|
+
event.control.ctx.input.focus = 입력: 포커스
|
|
674
|
+
event.control.ctx.input.send = 입력: 전송
|
|
675
|
+
event.control.ctx.last = 컨텍스트: 마지막
|
|
676
|
+
event.control.ctx.new = 컨텍스트: 새로 만들기
|
|
677
|
+
event.control.ctx.next = 컨텍스트: 다음
|
|
678
|
+
event.control.ctx.prev = 컨텍스트: 이전
|
|
679
|
+
event.control.ctx.read.all = 컨텍스트: 읽기(전체)
|
|
680
|
+
event.control.ctx.read.last = 컨텍스트: 읽기(최신)
|
|
681
|
+
event.control.ctx.rename = 컨텍스트: 이름 변경
|
|
682
|
+
event.control.ctx.search.clear = 검색 문자열이 지워졌습니다.
|
|
683
|
+
event.control.ctx.search.string = 대화 검색.
|
|
684
|
+
event.control.ctx.stop = 입력: 중지
|
|
685
|
+
event.control.input.sent = 입력이 전송되었습니다.
|
|
686
|
+
event.control.input.stopped = 입력이 중지되었습니다.
|
|
687
|
+
event.control.mode.chat = 모드: 채팅
|
|
688
|
+
event.control.mode.llama_index = 모드: 파일과 채팅
|
|
689
|
+
event.control.model.next = 모델: 다음
|
|
690
|
+
event.control.model.prev = 모델: 이전
|
|
691
|
+
event.control.mode.next = 모드: 다음
|
|
692
|
+
event.control.mode.prev = 모드: 이전
|
|
693
|
+
event.control.note.add = 메모장에 메모가 추가되었습니다.
|
|
694
|
+
event.control.notepad.clear = 메모장이 지워졌습니다.
|
|
695
|
+
event.control.notepad.read = 메모장: 읽기
|
|
696
|
+
event.control.preset.next = 프리셋: 다음
|
|
697
|
+
event.control.preset.prev = 프리셋: 이전
|
|
698
|
+
event.control.tab.calendar = 탭: 캘린더
|
|
699
|
+
event.control.tab.chat = 탭: 채팅
|
|
700
|
+
event.control.tab.draw = 탭: 그리기
|
|
701
|
+
event.control.tab.files = 탭: 파일
|
|
702
|
+
event.control.tab.next = 탭: 다음
|
|
703
|
+
event.control.tab.notepad = 탭: 메모장
|
|
704
|
+
event.control.tab.prev = 탭: 이전
|
|
705
|
+
event.control.voice_cmd.start = 음성 제어: 시작
|
|
706
|
+
event.control.voice_cmd.stop = 음성 제어: 중지
|
|
707
|
+
event.control.voice_cmd.toggle = 음성 제어: 토글
|
|
708
|
+
event.control.voice_msg.start = 음성 입력: 시작
|
|
709
|
+
event.control.voice_msg.stop = 음성 입력: 중지
|
|
710
|
+
event.control.voice_msg.toggle = 음성 입력: 토글
|
|
711
|
+
exit.msg = PyGPT 개발을 지원하세요:
|
|
712
|
+
expert.wait.failed = 전문가 호출 실패
|
|
713
|
+
expert.wait.status = 전문가 대기 중...
|
|
714
|
+
files.delete.confirm = 파일/디렉터리를 삭제할까요?
|
|
715
|
+
files.delete.recursive.confirm = 디렉터리가 비어 있지 않습니다! 디렉터리와 그 안의 모든 파일을 삭제하시겠습니까?
|
|
716
|
+
files.explorer.header.indexed = 인덱싱 시각
|
|
717
|
+
files.explorer.header.modified = 수정일
|
|
718
|
+
files.explorer.header.name = 이름
|
|
719
|
+
files.explorer.header.size = 크기
|
|
720
|
+
files.explorer.header.type = 유형
|
|
721
|
+
files.local.dir.prefix = 경로
|
|
722
|
+
files.local.upload = 파일 업로드
|
|
723
|
+
filter.ctx.counters.all = 모든 카운터
|
|
724
|
+
filter.ctx.label = 컨텍스트 목록 표시 필터
|
|
725
|
+
filter.ctx.label.colors = 라벨로 표시
|
|
726
|
+
filter.ctx.radio.all = 전체
|
|
727
|
+
filter.ctx.radio.indexed = 인덱싱됨(LlamaIndex)
|
|
728
|
+
filter.ctx.radio.labeled = 라벨됨
|
|
729
|
+
filter.ctx.radio.pinned = 고정됨
|
|
730
|
+
header.assistant.tool.function.desc = 설명
|
|
731
|
+
header.assistant.tool.function.name = 이름
|
|
732
|
+
header.assistant.tool.function.params = 매개변수(JSON)
|
|
733
|
+
html_canvas.btn.clear = 지우기
|
|
734
|
+
html_canvas.btn.edit = 소스 편집
|
|
735
|
+
html_canvas.clear.confirm = HTML 캔버스 출력을 지울까요?
|
|
736
|
+
icon.audio.input = 오디오 입력 켜기/끄기
|
|
737
|
+
icon.audio.output = 오디오 출력 켜기/끄기
|
|
738
|
+
icon.remote_tool.web = 웹 검색(원격 도구, 로컬 도구 아님)
|
|
739
|
+
icon.remote_tool.web.disabled = 웹 검색(원격 도구, 로컬 도구 아님) - 비활성화됨
|
|
740
|
+
icon.remote_tool.web.enabled = 웹 검색(원격 도구, 로컬 도구 아님) - 활성화됨
|
|
741
|
+
icon.video.capture = 카메라 캡처 켜기/끄기
|
|
742
|
+
idx.btn.clear = 인덱스 지우기
|
|
743
|
+
idx.btn.index_all = 모두 인덱싱
|
|
744
|
+
idx.btn.truncate = 인덱스 지우기(전체)
|
|
745
|
+
idx.confirm.clear.content = 인덱스의 모든 데이터를 삭제하시겠습니까?\n디스크에서 전체 인덱스 디렉터리가 삭제됩니다!
|
|
746
|
+
idx.confirm.db.content = 데이터베이스 기록을 인덱싱하시겠습니까?
|
|
747
|
+
idx.confirm.file.content = 이 파일/디렉터리를 인덱싱하시겠습니까?\n{dir}?
|
|
748
|
+
idx.confirm.file.remove.content = 인덱스에서 이 파일/디렉터리를 삭제하시겠습니까?\n{dir}?
|
|
749
|
+
idx.confirm.files.content = 디렉터리 내 모든 파일을 인덱싱하시겠습니까?\n{dir}?
|
|
750
|
+
idx.index_now = 인덱싱
|
|
751
|
+
idx.last = 마지막 DB 자동 인덱싱
|
|
752
|
+
idx.new = 새로 만들기
|
|
753
|
+
idx.query.raw = 인덱스만 질의(채팅 없이)
|
|
754
|
+
idx.status.empty = 인덱싱된 항목이 없습니다.
|
|
755
|
+
idx.status.error = [오류] 인덱싱된 항목이 없습니다.
|
|
756
|
+
idx.status.indexing = 인덱싱 중... 잠시만 기다려 주세요...
|
|
757
|
+
idx.status.success = [확인] 인덱싱된 항목:
|
|
758
|
+
idx.status.truncate.error = [오류] 인덱스가 잘려나가지 않았습니다.
|
|
759
|
+
idx.status.truncate.success = [확인] 인덱스가 잘렸습니다.
|
|
760
|
+
idx.status.truncating = 인덱스 제거 중... 잠시만 기다려 주세요...
|
|
761
|
+
idx.token.warn = 데이터를 임베딩하기 위해 추가 토큰을 사용합니다.
|
|
762
|
+
img.action.open = 원본 크기로 열기
|
|
763
|
+
img.action.save = 다른 이름으로 저장...
|
|
764
|
+
img.raw = 원시(Raw)
|
|
765
|
+
img.remix = 리믹스/확장
|
|
766
|
+
img.remix.tooltip = 컨텍스트의 이전 이미지를 기반으로 리믹스/확장을 활성화합니다.\n활성화 시 새로 만들기 대신 이전 이미지를 참조로 사용합니다.
|
|
767
|
+
img.save.title = 이미지 저장
|
|
768
|
+
img.status.downloading = 다운로드 중...
|
|
769
|
+
img.status.error = 이미지 생성 오류
|
|
770
|
+
img.status.finished = 이미지가 생성되어 다운로드되었습니다.
|
|
771
|
+
img.status.generating = 잠시만 기다려 주세요... 다음 프롬프트에서 이미지 생성 중:
|
|
772
|
+
img.status.prompt.error = 모델의 이미지 프롬프트 생성 오류
|
|
773
|
+
img.status.prompt.wait = 이미지 프롬프트를 요청 중... 잠시만 기다려 주세요...
|
|
774
|
+
img.status.save.error = 이미지 저장 오류
|
|
775
|
+
info.settings.all.saved = 모든 설정이 저장되었습니다
|
|
776
|
+
info.settings.saved = 설정이 저장되었습니다
|
|
777
|
+
inline.vision = + 비전
|
|
778
|
+
input.btn.cancel = 취소
|
|
779
|
+
input.btn.send = 전송
|
|
780
|
+
input.btn.stop = 중지
|
|
781
|
+
input.btn.update = 업데이트
|
|
782
|
+
input.label = 입력(내 프롬프트)
|
|
783
|
+
input.placeholder = 프롬프트 기록을 보려면 CTRL + 위/아래 화살표 키를 누르세요...
|
|
784
|
+
input.radio.enter = Enter
|
|
785
|
+
input.radio.enter_shift = Shift+Enter
|
|
786
|
+
input.radio.none = 끔
|
|
787
|
+
input.search.placeholder = 검색...
|
|
788
|
+
input.send_clear = 전송 시 지우기
|
|
789
|
+
input.stream = 스트림
|
|
790
|
+
input.tab = 입력
|
|
791
|
+
input.tab.extra = 추가 입력
|
|
792
|
+
input.tab.extra.negative_prompt = 네거티브 프롬프트
|
|
793
|
+
input.tab.tooltip = {chars}자(~{tokens} 토큰)
|
|
794
|
+
interpreter.all = 기록 실행(전체)
|
|
795
|
+
interpreter.auto_clear = 전송 시 출력 지우기
|
|
796
|
+
interpreter.btn.clear = 출력 지우기
|
|
797
|
+
interpreter.btn.send = 전송/실행
|
|
798
|
+
interpreter.clear.confirm = 현재 창을 지울까요?
|
|
799
|
+
interpreter.edit = 편집 모드
|
|
800
|
+
interpreter.edit_label.edit = 코드(기록)
|
|
801
|
+
interpreter.edit_label.output = 출력
|
|
802
|
+
interpreter.input.placeholder = 실행할 파이썬 코드...\n\n/restart - 커널 재시작\n/clear - 출력 지우기
|
|
803
|
+
interpreter.menu.file = 파일
|
|
804
|
+
interpreter.menu.file.clear_all = 모두 지우기
|
|
805
|
+
interpreter.menu.file.clear_history = 기록 지우기
|
|
806
|
+
interpreter.menu.file.clear_output = 출력 지우기
|
|
807
|
+
interpreter.menu.kernel = 커널
|
|
808
|
+
interpreter.menu.kernel.restart = IPython: 커널 재시작
|
|
809
|
+
ipython.docker.build.finish = 성공! IPython용 Docker 이미지가 빌드되었습니다.
|
|
810
|
+
ipython.docker.build.start = Docker 이미지 빌드 중... 잠시만 기다려 주세요...
|
|
811
|
+
ipython.docker.install = IPython을 실행하려면 Docker 설치가 필요합니다. 시스템에서 Docker가 감지되지 않았습니다. 먼저 Docker를 설치하세요. 안내: https://docs.docker.com/engine/install/. 현재 명령 실행이 일시 중지되었습니다.
|
|
812
|
+
ipython.docker.install.snap = \n\nSNAP 버전: \n내장 Docker 데몬에 연결되어 있지 않습니다. 다음으로 슬롯을 연결하세요:\n\nsudo snap connect pygpt:docker-executables docker:docker-executables\n\nsudo snap connect pygpt:docker docker:docker-daemon\n\n...그리고 앱을 재시작하세요.
|
|
813
|
+
ipython.image.build = IPython용 Docker 이미지가 아직 빌드되지 않았습니다. 지금 빌드하며 시간이 걸릴 수 있습니다(한 번만 필요). 명령 실행이 일시 중지되었습니다. 빌드가 완료되면 명령을 다시 실행하세요.
|
|
814
|
+
layout.split = 화면 분할
|
|
815
|
+
list.all = --- 전체 ---
|
|
816
|
+
menu.audio = 오디오/음성
|
|
817
|
+
menu.audio.cache.clear = 오디오 캐시 지우기...
|
|
818
|
+
menu.audio.control.global = 음성 제어(전역)
|
|
819
|
+
menu.audio.control.plugin = 음성 제어(인라인)
|
|
820
|
+
menu.audio.input = 입력: 음성 인식
|
|
821
|
+
menu.audio.output = 출력: 음성 합성
|
|
822
|
+
menu.audio.stop = 오디오 재생 중지
|
|
823
|
+
menu.config = 설정
|
|
824
|
+
menu.config.access = 접근성
|
|
825
|
+
menu.config.change_dir = 작업 디렉터리 변경...
|
|
826
|
+
menu.config.edit.config = config.json 편집...
|
|
827
|
+
menu.config.edit.css = CSS 스타일시트 편집...
|
|
828
|
+
menu.config.edit.css.restore = 기본 CSS 복원...
|
|
829
|
+
menu.config.edit.json = JSON 설정 편집...
|
|
830
|
+
menu.config.edit.models = models.json 편집...
|
|
831
|
+
menu.config.models = 모델...
|
|
832
|
+
menu.config.models.edit = 모델 편집
|
|
833
|
+
menu.config.models.import.ollama = Ollama에서 가져오기
|
|
834
|
+
menu.config.models.import.provider = 가져오기...
|
|
835
|
+
menu.config.open_dir = 작업 디렉터리 열기...
|
|
836
|
+
menu.config.profile = 프로필
|
|
837
|
+
menu.config.profile.edit = 프로필 편집...
|
|
838
|
+
menu.config.profile.new = 새 프로필...
|
|
839
|
+
menu.config.save = 설정 저장
|
|
840
|
+
menu.config.settings = 설정...
|
|
841
|
+
menu.debug = 디버그
|
|
842
|
+
menu.debug.agent = 에이전트...
|
|
843
|
+
menu.debug.agent_builder = 에이전트 빌더
|
|
844
|
+
menu.debug.app.log = 로그 파일 보기(app.log)
|
|
845
|
+
menu.debug.assistants = 어시스턴트...
|
|
846
|
+
menu.debug.attachments = 파일/첨부...
|
|
847
|
+
menu.debug.config = 설정...
|
|
848
|
+
menu.debug.context = 컨텍스트...
|
|
849
|
+
menu.debug.db = DB 뷰어
|
|
850
|
+
menu.debug.events = 이벤트...
|
|
851
|
+
menu.debug.fixtures.stream = 픽스처: 스트림
|
|
852
|
+
menu.debug.indexes = 인덱스...
|
|
853
|
+
menu.debug.kernel = 커널...
|
|
854
|
+
menu.debug.logger = 로거 열기
|
|
855
|
+
menu.debug.models = 모델...
|
|
856
|
+
menu.debug.plugins = 플러그인...
|
|
857
|
+
menu.debug.presets = 프리셋...
|
|
858
|
+
menu.debug.render = 렌더...
|
|
859
|
+
menu.debug.tabs = 탭...
|
|
860
|
+
menu.debug.ui = UI...
|
|
861
|
+
menu.file = 파일
|
|
862
|
+
menu.file_clear_history = 기록 지우기
|
|
863
|
+
menu.file_clear_history_groups = 기록 지우기(+그룹)
|
|
864
|
+
menu.file.current = 현재 선택
|
|
865
|
+
menu.file.exit = 종료
|
|
866
|
+
menu.file.group.new = 새 그룹...
|
|
867
|
+
menu.file.new = 새 컨텍스트...
|
|
868
|
+
menu.info = 정보
|
|
869
|
+
menu.info.about = 정보
|
|
870
|
+
menu.info.changelog = 변경 로그
|
|
871
|
+
menu.info.discord = Discord
|
|
872
|
+
menu.info.docs = 문서
|
|
873
|
+
menu.info.donate = PyGPT 기부
|
|
874
|
+
menu.info.github = GitHub
|
|
875
|
+
menu.info.license = 라이선스
|
|
876
|
+
menu.info.ms_store = Microsoft Store
|
|
877
|
+
menu.info.pypi = PyPI
|
|
878
|
+
menu.info.report = 버그 신고
|
|
879
|
+
menu.info.snap = Snap Store
|
|
880
|
+
menu.info.updates = 업데이트 확인...
|
|
881
|
+
menu.info.website = 프로젝트 웹사이트 - pygpt.net
|
|
882
|
+
menu.lang = 언어
|
|
883
|
+
menu.plugins = 플러그인
|
|
884
|
+
menu.plugins.presets = 프리셋...
|
|
885
|
+
menu.plugins.presets.edit = 프리셋 편집...
|
|
886
|
+
menu.plugins.presets.new = 새 프리셋...
|
|
887
|
+
menu.plugins.settings = 설정...
|
|
888
|
+
menu.theme = 테마
|
|
889
|
+
menu.theme.blocks = 블록 표시
|
|
890
|
+
menu.theme.dark = 다크 색상...
|
|
891
|
+
menu.theme.density = 레이아웃 크기
|
|
892
|
+
menu.theme.light = 라이트 색상...
|
|
893
|
+
menu.theme.settings = 설정...
|
|
894
|
+
menu.theme.style = 스타일...
|
|
895
|
+
menu.theme.syntax = 코드 구문 강조...
|
|
896
|
+
menu.theme.tooltips = 툴팁 표시
|
|
897
|
+
menu.tools = 도구
|
|
898
|
+
menu.tools.agent.builder = 에이전트 빌더
|
|
899
|
+
menu.tools.audio.transcribe = 오디오/비디오 파일 전사
|
|
900
|
+
menu.tools.html_canvas = HTML/JS 캔버스
|
|
901
|
+
menu.tools.image.viewer = 이미지 뷰어
|
|
902
|
+
menu.tools.interpreter = 파이썬 코드 인터프리터
|
|
903
|
+
menu.tools.media.player = 미디어 플레이어
|
|
904
|
+
menu.tools.text.editor = 텍스트 편집기
|
|
905
|
+
menu.tools.translator = 번역기
|
|
906
|
+
menu.tools.web_browser = 웹 브라우저(Chromium)
|
|
907
|
+
menu.tray.notepad = 메모장 열기...
|
|
908
|
+
menu.tray.scheduled = 예약 작업
|
|
909
|
+
menu.tray.screenshot = 스크린샷으로 질문...
|
|
910
|
+
menu.video = 비디오
|
|
911
|
+
menu.video.capture = 입력: 카메라
|
|
912
|
+
menu.video.capture.auto = 자동 캡처
|
|
913
|
+
mode.agent = 에이전트(자율)
|
|
914
|
+
mode.agent_llama = 에이전트(LlamaIndex)
|
|
915
|
+
mode.agent_llama.tooltip = 고급 에이전트(LlamaIndex)
|
|
916
|
+
mode.agent_openai = 에이전트(OpenAI)
|
|
917
|
+
mode.agent_openai.tooltip = 고급 에이전트(OpenAI)
|
|
918
|
+
mode.agent.tooltip = 간단한 에이전트(레거시)
|
|
919
|
+
mode.assistant = 어시스턴트
|
|
920
|
+
mode.assistant.tooltip = Assistants API로 채팅
|
|
921
|
+
mode.audio = 리얼타임 + 오디오
|
|
922
|
+
mode.chat = 채팅
|
|
923
|
+
mode.chat.tooltip = 채팅 모드(기본)
|
|
924
|
+
mode.completion = 완성(Completion)
|
|
925
|
+
mode.completion.tooltip = Completion 모드
|
|
926
|
+
mode.computer = 컴퓨터 사용
|
|
927
|
+
mode.computer.tooltip = 컴퓨터 사용(마우스, 키보드, 내비게이션)
|
|
928
|
+
mode.expert = 전문가(Co-op)
|
|
929
|
+
mode.expert.tooltip = 백그라운드에서 호출할 전문가
|
|
930
|
+
mode.img = 이미지 및 비디오
|
|
931
|
+
mode.img.image = 이미지
|
|
932
|
+
mode.img.music = 음악
|
|
933
|
+
mode.img.tooltip = 이미지 생성
|
|
934
|
+
mode.img.video = 비디오
|
|
935
|
+
mode.langchain = Langchain
|
|
936
|
+
mode.langchain.tooltip = Langchain이 제공하는 모델로 채팅
|
|
937
|
+
model.ctx = 컨텍스트 토큰
|
|
938
|
+
model.ctx.desc = 모델 입력 최대 토큰
|
|
939
|
+
model.default = 모드의 기본값
|
|
940
|
+
model.extra = 추가 매개변수(JSON)
|
|
941
|
+
model.extra.desc = 모델의 추가 매개변수를 담은 JSON 객체(예: reasoning effort 등).
|
|
942
|
+
model.id = 모델 ID
|
|
943
|
+
model.id.desc = 제공자가 제공한 정확한 모델 ID를 입력하세요
|
|
944
|
+
model.input = 입력
|
|
945
|
+
mode.llama_index = 파일과 채팅
|
|
946
|
+
mode.llama_index.tooltip = LlamaIndex가 제공하는 추가 컨텍스트로 채팅
|
|
947
|
+
model.langchain.args = [Langchain] LLM 제공자 추가 **kwargs
|
|
948
|
+
model.langchain.args.desc = Langchain 제공자 인스턴스에 전달할 키워드 인자(config, API 키, 모델 등)
|
|
949
|
+
model.langchain.env = [Langchain] ENV 변수(os.environ용)
|
|
950
|
+
model.langchain.env.desc = Langchain 제공자용 환경 변수(API 키 등)
|
|
951
|
+
model.langchain.mode = [Langchain] 모드
|
|
952
|
+
model.langchain.mode.desc = 사용 가능한 하위 모드: chat, completion
|
|
953
|
+
model.langchain.provider = [Langchain] 제공자
|
|
954
|
+
model.langchain.provider.desc = "Langchain" 모드에서 사용할 LLM 제공자
|
|
955
|
+
model.llama_index.args = [LlamaIndex] LLM 제공자 추가 **kwargs
|
|
956
|
+
model.llama_index.args.desc = LlamaIndex 제공자 인스턴스에 전달할 키워드 인자(config, API 키, 모델 등)
|
|
957
|
+
model.llama_index.env = [LlamaIndex] ENV 변수(os.environ용)
|
|
958
|
+
model.llama_index.env.desc = LlamaIndex 제공자용 환경 변수(API 키 등)
|
|
959
|
+
model.llama_index.mode = [LlamaIndex] 모드
|
|
960
|
+
model.llama_index.mode.desc = 사용 가능한 하위 모드: chat
|
|
961
|
+
model.llama_index.provider = [LlamaIndex] 제공자
|
|
962
|
+
model.llama_index.provider.desc = "파일과 채팅" 모드에서 사용할 LLM 제공자
|
|
963
|
+
model.mode = 모드
|
|
964
|
+
model.mode.desc = 사용 가능한 모드: chat, llama_index, audio, research, completion, img, vision, assistant, agent_llama, agent, expert
|
|
965
|
+
model.multimodal = 멀티모달
|
|
966
|
+
model.name = 이름
|
|
967
|
+
model.name.desc = 목록에 표시될 이름(무엇이든 가능)
|
|
968
|
+
model.openai = OpenAI API
|
|
969
|
+
model.openai.desc = OpenAI API(또는 호환) 지원
|
|
970
|
+
model.output = 출력
|
|
971
|
+
model.provider = 제공자
|
|
972
|
+
model.provider.desc = 모델 제공자를 선택하세요
|
|
973
|
+
models.importer.all = 전체 표시
|
|
974
|
+
models.importer.available.label = 사용 가능한 모델
|
|
975
|
+
models.importer.current.default = 목록에서 제공자를 선택하세요.
|
|
976
|
+
models.importer.current.label = PyGPT 모델
|
|
977
|
+
models.importer.error.add.no_model = 추가할 모델이 선택되지 않았습니다
|
|
978
|
+
models.importer.error.add.not_exists = 모델이 현재 목록에 이미 존재합니다
|
|
979
|
+
models.importer.error.no_connection = Ollama가 실행 중이 아니거나 사용할 수 없습니다! Ollama 서버를 시작하고 새로고침 버튼을 클릭하세요.
|
|
980
|
+
models.importer.error.no_models = Ollama 모델이 없습니다! Ollama CLI로 모델을 설치하고 새로고침 버튼을 클릭하세요.
|
|
981
|
+
models.importer.error.remove.no_model = 제거할 모델이 선택되지 않았습니다
|
|
982
|
+
models.importer.error.remove.not_exists = 모델이 현재 목록에 이미 존재합니다
|
|
983
|
+
models.importer.list.select = --- 제공자 선택 ---
|
|
984
|
+
models.importer.loaded = {provider} 모델을 성공적으로 불러왔습니다.
|
|
985
|
+
models.importer.status.imported = 모델을 성공적으로 가져왔습니다.
|
|
986
|
+
models.importer.status.wait = 모델 목록 가져오는 중...
|
|
987
|
+
model.tokens = 출력 토큰
|
|
988
|
+
model.tokens.desc = 모델 출력 최대 토큰
|
|
989
|
+
model.tool_calls = 도구 호출(함수 호출)
|
|
990
|
+
model.tool_calls.desc = 네이티브 API 함수 호출 활성화 - 모든 모델이 지원하는 것은 아닙니다. 비활성화 시 도구가 포함된 시스템 프롬프트를 사용합니다.
|
|
991
|
+
mode.research = 리서치
|
|
992
|
+
mode.research.tooltip = Perplexity로 웹 리서치
|
|
993
|
+
mode.vision = 비전
|
|
994
|
+
mode.vision.tooltip = GPT-4 Vision으로 이미지 분석
|
|
995
|
+
msg.agent.plan = 계획
|
|
996
|
+
msg.agent.plan.current = 현재 계획
|
|
997
|
+
msg.agent.plan.deps = 의존성
|
|
998
|
+
msg.agent.plan.expected = 예상 출력
|
|
999
|
+
msg.agent.plan.num_subtasks = 하위 작업 수
|
|
1000
|
+
msg.agent.plan.subtask = 하위 작업
|
|
1001
|
+
msg.agent.step = 단계
|
|
1002
|
+
msg.eval.score = 점수
|
|
1003
|
+
msg.name.evaluation = 평가
|
|
1004
|
+
msg.name.system = 시스템
|
|
1005
|
+
multimodal.audio = 오디오
|
|
1006
|
+
multimodal.image = 이미지
|
|
1007
|
+
multimodal.text = 텍스트
|
|
1008
|
+
multimodal.video = 비디오
|
|
1009
|
+
node.editor.bottom.tip = 우클릭: 노드 추가/되돌리기/다시 실행 • 중간 클릭: 화면 이동 • Ctrl+마우스 휠: 확대/축소 좌클릭 포트: 연결 생성 • Ctrl+좌클릭 포트: 재배선/분리 • 우클릭 또는 DEL: 노드/연결 제거
|
|
1010
|
+
node.editor.cap.na = 해당 없음
|
|
1011
|
+
node.editor.cap.unlimited = 무제한(∞)
|
|
1012
|
+
node.editor.cmd.add = 추가
|
|
1013
|
+
node.editor.cmd.clear = 지우기
|
|
1014
|
+
node.editor.cmd.connect = 연결
|
|
1015
|
+
node.editor.cmd.delete_connection = 연결 삭제
|
|
1016
|
+
node.editor.cmd.delete_node = 노드 삭제
|
|
1017
|
+
node.editor.cmd.move_node = 노드 이동
|
|
1018
|
+
node.editor.cmd.resize_node = 노드 크기 조정
|
|
1019
|
+
node.editor.cmd.rewire_connection = 연결 재배선
|
|
1020
|
+
node.editor.edge.delete = 연결 삭제
|
|
1021
|
+
node.editor.hint.click_start = 클릭: 새 연결 시작
|
|
1022
|
+
node.editor.hint.ctrl_rewire = Ctrl+클릭: 기존 연결 재배선/분리
|
|
1023
|
+
node.editor.label.id = ID
|
|
1024
|
+
node.editor.lbl.allowed = 허용된 연결:
|
|
1025
|
+
node.editor.lbl.node = 노드:
|
|
1026
|
+
node.editor.lbl.port = 포트:
|
|
1027
|
+
node.editor.list.tip = 추가된 커스텀 에이전트 워크플로 목록(프리셋 편집기의 에이전트 타입 섹션에서 사용 가능)
|
|
1028
|
+
node.editor.macro.delete_selection = 선택 항목 삭제
|
|
1029
|
+
node.editor.menu.add = 추가
|
|
1030
|
+
node.editor.menu.clear = 지우기
|
|
1031
|
+
node.editor.menu.redo = 다시 실행
|
|
1032
|
+
node.editor.menu.undo = 실행 취소
|
|
1033
|
+
node.editor.node.delete = 삭제
|
|
1034
|
+
node.editor.node.rename = 이름 바꾸기
|
|
1035
|
+
node.editor.overlay.grab = 잡기: 왼쪽 마우스 버튼으로 전역 패닝 토글
|
|
1036
|
+
node.editor.overlay.zoom_in = 확대
|
|
1037
|
+
node.editor.overlay.zoom_out = 축소
|
|
1038
|
+
node.editor.property.agent.name = 에이전트
|
|
1039
|
+
node.editor.property.input.name = 입력
|
|
1040
|
+
node.editor.property.instruction.name = 지침
|
|
1041
|
+
node.editor.property.instruction.placeholder = 에이전트용 시스템 지침
|
|
1042
|
+
node.editor.property.local_tools.name = 로컬 도구
|
|
1043
|
+
node.editor.property.memory.name = 메모리
|
|
1044
|
+
node.editor.property.name.name = 이름
|
|
1045
|
+
node.editor.property.name.placeholder = 에이전트 이름
|
|
1046
|
+
node.editor.property.output.name = 출력
|
|
1047
|
+
node.editor.property.remote_tools.name = 원격 도구
|
|
1048
|
+
node.editor.property.role.name = 역할
|
|
1049
|
+
node.editor.property.role.placeholder = 에이전트 목적의 선택적 짧은 설명
|
|
1050
|
+
node.editor.rename.label = 이름:
|
|
1051
|
+
node.editor.rename.title = 노드 이름 바꾸기
|
|
1052
|
+
node.editor.side.input = 입력
|
|
1053
|
+
node.editor.side.output = 출력
|
|
1054
|
+
node.editor.spec.agent.title = 에이전트
|
|
1055
|
+
node.editor.spec.end.title = 종료
|
|
1056
|
+
node.editor.spec.memory.title = 메모리(컨텍스트)
|
|
1057
|
+
node.editor.spec.start.title = 시작
|
|
1058
|
+
node.editor.status.no_nodes = 노드 없음
|
|
1059
|
+
node.editor.type.unknown = 알 수 없음
|
|
1060
|
+
notify.agent.goal.content = 에이전트: 목표를 달성했습니다.
|
|
1061
|
+
notify.agent.goal.title = 목표 달성
|
|
1062
|
+
notify.agent.stop.content = 에이전트: 중지됨
|
|
1063
|
+
notify.agent.stop.title = 완료됨
|
|
1064
|
+
notify.cron.title = 예약 작업 실행 중
|
|
1065
|
+
notify.update.title = 새 버전 사용 가능
|
|
1066
|
+
output.edit = 편집
|
|
1067
|
+
output.raw = 일반 텍스트
|
|
1068
|
+
output.tab.calendar = 캘린더
|
|
1069
|
+
output.tab.chat = 채팅
|
|
1070
|
+
output.tab.files = 파일
|
|
1071
|
+
output.tab.notepad = 메모장
|
|
1072
|
+
output.tab.painter = 페인터
|
|
1073
|
+
output.timestamp = 시간 표시
|
|
1074
|
+
output.tips.1 = CTRL + 마우스 휠로 확대/축소할 수 있습니다.
|
|
1075
|
+
output.tips.10 = 설정 -> 모델 -> 가져오기... 도구로 새 모델을 가져올 수 있습니다.
|
|
1076
|
+
output.tips.11 = 프로필을 사용하면 앱 설정과 구성을 빠르게 전환할 수 있습니다.
|
|
1077
|
+
output.tips.12 = 최적의 에이전트 유형을 선택해 작업에 맞는 에이전트를 생성하세요. 필요 시 프리셋 편집기에서 시스템 프롬프트를 커스터마이즈하세요.
|
|
1078
|
+
output.tips.13 = 메모장에서 마이크 입력을 사용해 음성 메모를 저장할 수 있습니다.
|
|
1079
|
+
output.tips.2 = CTRL + F를 눌러 찾기 대화상자를 여세요.
|
|
1080
|
+
output.tips.3 = 언제든 ESC 키로 응답 생성을 중지할 수 있습니다.
|
|
1081
|
+
output.tips.4 = 플러그인의 도구를 사용하려면 "+ 도구" 체크박스가 선택되어 있어야 합니다.
|
|
1082
|
+
output.tips.5 = 오른쪽 상단의 [+] 버튼을 클릭하거나 탭을 우클릭하여 더 많은 채팅/메모장 탭을 추가할 수 있습니다.
|
|
1083
|
+
output.tips.6 = 컨텍스트 항목을 우클릭하고 "새 탭에서 열기"를 선택하면 대화를 새 탭에서 열 수 있습니다.
|
|
1084
|
+
output.tips.7 = 로컬 모델 사용 시 도구가 필요 없다면 도구를 비활성화하면 성능이 향상됩니다.
|
|
1085
|
+
output.tips.8 = 로컬 모델 사용 시 컨텍스트 요약 및 임베딩 모델도 로컬 모델로 설정하는 것을 잊지 마세요.
|
|
1086
|
+
output.tips.9 = 오디오 입력/출력 제공자를 설정하려면 플러그인 -> 설정으로 이동하세요. 오디오 장치를 설정하려면 설정 -> Settings -> Audio로 이동하세요.
|
|
1087
|
+
output.tips.prefix = 팁
|
|
1088
|
+
painter.btn.camera.capture = 카메라에서
|
|
1089
|
+
painter.btn.capture = 이미지 사용
|
|
1090
|
+
painter.btn.clear = 지우기
|
|
1091
|
+
painter.btn.crop = 자르기
|
|
1092
|
+
painter.btn.fit = 맞추기
|
|
1093
|
+
painter.capture.manual.captured.success = 이미지 캡처됨:
|
|
1094
|
+
painter.capture.name.prefix = 다음에서 그리기:
|
|
1095
|
+
painter.mode.erase = 지우개
|
|
1096
|
+
painter.mode.paint = 그리기
|
|
1097
|
+
plugin.tab.general = 일반
|
|
1098
|
+
preset.action.delete = 삭제
|
|
1099
|
+
preset.action.disable = 비활성화
|
|
1100
|
+
preset.action.duplicate = 복제
|
|
1101
|
+
preset.action.edit = 편집
|
|
1102
|
+
preset.action.enable = 활성화
|
|
1103
|
+
preset.agent = 에이전트(자율)
|
|
1104
|
+
preset.agent_llama = 에이전트(LlamaIndex)
|
|
1105
|
+
preset.agent_openai = 에이전트(OpenAI)
|
|
1106
|
+
preset.agent_provider = 에이전트 유형
|
|
1107
|
+
preset.agent_provider.desc = 현재 프리셋의 에이전트 유형을 선택하세요
|
|
1108
|
+
preset.ai_avatar = 아바타
|
|
1109
|
+
preset.ai_name = AI 이름
|
|
1110
|
+
preset.ai_personalize = 채팅 창에 이름과 아바타 표시
|
|
1111
|
+
preset.ai_personalize.desc = 대화 중 채팅 창에 AI 이름과 아바타를 표시하려면 이 옵션을 활성화하세요.
|
|
1112
|
+
preset.assistant = 어시스턴트
|
|
1113
|
+
preset.assistant_id = OpenAI 어시스턴트 ID
|
|
1114
|
+
preset.assistant_id.desc = * OpenAI 어시스턴트 에이전트 유형 전용. 제공되지 않으면 새 어시스턴트를 생성합니다.
|
|
1115
|
+
preset.audio = 오디오로 채팅
|
|
1116
|
+
preset.chat = 채팅
|
|
1117
|
+
preset.clear = 지우기
|
|
1118
|
+
preset.completion = 완성(Completion)
|
|
1119
|
+
preset.computer = 컴퓨터 사용
|
|
1120
|
+
preset.description = 설명
|
|
1121
|
+
preset.description.desc = 설명을 사용해 다른 에이전트에게 이 전문가/에이전트가 무엇을 하는지 지시할 수 있습니다(예: '최고의 농담을 생성').\n시스템 프롬프트로 이 전문가가 일을 수행하는 방법을 안내할 수 있습니다(예: '당신은 농담을 생성하는 전문가이며 매우 도움이 되는 어시스턴트입니다.').
|
|
1122
|
+
preset.expert = 전문가
|
|
1123
|
+
preset.experts.available.label = 사용 가능한 전문가
|
|
1124
|
+
preset.experts.selected.label = 할당된 전문가(이 에이전트)
|
|
1125
|
+
preset.filename = ID(파일명)
|
|
1126
|
+
preset.idx = 사용할 인덱스
|
|
1127
|
+
preset.idx.desc = 인덱스를 선택하면 검색 도구가 자동으로 활성화됩니다.
|
|
1128
|
+
preset.img = 이미지
|
|
1129
|
+
preset.langchain = Langchain
|
|
1130
|
+
preset.llama_index = 파일과 채팅
|
|
1131
|
+
preset.name = 프리셋 이름
|
|
1132
|
+
preset.new = 생성
|
|
1133
|
+
preset.personalize.avatar.choose = 선택...
|
|
1134
|
+
preset.personalize.avatar.choose.title = 아바타 선택
|
|
1135
|
+
preset.personalize.avatar.current = 아바타
|
|
1136
|
+
preset.personalize.avatar.remove = 제거
|
|
1137
|
+
preset.personalize.warning = 경고: AI를 "친구"로 사용하지 마세요. 현실의 우정이 AI를 우정 대체물로 사용하는 것보다 낫습니다.\nAI와의 상호작용에 감정적으로 몰입하지 마세요.
|
|
1138
|
+
preset.prompt = 시스템 프롬프트
|
|
1139
|
+
preset.prompt.agent = 에이전트 시스템 프롬프트(추가); 기본 지침은 설정 -> Prompts -> Agent: system instruction에 정의됨
|
|
1140
|
+
preset.prompt.agent_llama = 에이전트 시스템 프롬프트
|
|
1141
|
+
preset.prompt.delete = 삭제
|
|
1142
|
+
preset.prompt.paste_custom = 내 템플릿에서 붙여넣기...
|
|
1143
|
+
preset.prompt.paste_template = 템플릿에서 붙여넣기...
|
|
1144
|
+
preset.prompt.rename = 이름 바꾸기
|
|
1145
|
+
preset.prompt.save_custom = 내 템플릿으로 저장
|
|
1146
|
+
preset.prompt.use = 붙여넣기...
|
|
1147
|
+
preset.research = 리서치
|
|
1148
|
+
preset.tab.experts = 전문가
|
|
1149
|
+
preset.tab.general = 일반
|
|
1150
|
+
preset.tab.personalize = 개인화
|
|
1151
|
+
preset.tab.remote_tools = 원격 도구
|
|
1152
|
+
preset.temperature = 온도(Temperature)
|
|
1153
|
+
preset.tool.function = 함수
|
|
1154
|
+
preset.tool.function.tip.agent_llama = 팁: 플러그인의 함수는 자동으로 활성화됩니다.
|
|
1155
|
+
preset.tool.function.tip.all = 팁: 플러그인의 함수는 자동으로 활성화됩니다.
|
|
1156
|
+
preset.tool.function.tip.assistant = 팁: Assistants API에서 사용하려면 플러그인의 함수를 수동으로 추가해야 합니다.
|
|
1157
|
+
preset.untitled = (제목 없음)
|
|
1158
|
+
preset.use = 사용
|
|
1159
|
+
preset.user_name = 사용자 이름
|
|
1160
|
+
preset.vision = 비전
|
|
1161
|
+
profile.current.suffix = (현재)
|
|
1162
|
+
remote_store.expire_days = 만료 일수
|
|
1163
|
+
remote_store.expire_days.desc = 0 = 만료 없음
|
|
1164
|
+
remote_store.files.suffix = 파일
|
|
1165
|
+
remote_store.google.hide_threads = 스레드 벡터 스토어 숨기기
|
|
1166
|
+
remote_store.hide_threads = 스레드 벡터 스토어 숨기기
|
|
1167
|
+
remote_store.id = ID
|
|
1168
|
+
remote_store.id.description = 원격 도구 설정에서 이 ID를 사용하세요
|
|
1169
|
+
remote_store.menu.file.delete = 파일 삭제
|
|
1170
|
+
remote_store.name = 이름
|
|
1171
|
+
remote_store.provider = 제공자
|
|
1172
|
+
remote_store.provider.desc = 먼저 제공자를 선택하세요
|
|
1173
|
+
remote_store.status = 상태
|
|
1174
|
+
remote_store.thread_only = (현재 스레드만)
|
|
1175
|
+
remote_tool.openai.code_interpreter = 코드 인터프리터
|
|
1176
|
+
remote_tool.openai.computer_use = 컴퓨터 사용
|
|
1177
|
+
remote_tool.openai.file_search = 파일 검색
|
|
1178
|
+
remote_tool.openai.image = 이미지 생성
|
|
1179
|
+
remote_tool.openai.mcp = 원격 MCP
|
|
1180
|
+
remote_tool.openai.web_search = 웹 검색
|
|
1181
|
+
screenshot.capture.name.prefix = 다음에서 캡처한 스크린샷:
|
|
1182
|
+
settings.access.audio.event.speech = 화면 이벤트를 음성 합성으로 설명합니다.
|
|
1183
|
+
settings.access.audio.event.speech.disabled = 이벤트 설명 음성 합성 블랙리스트(무시할 이벤트)
|
|
1184
|
+
settings.access.audio.event.speech.disabled.desc = 오디오 합성으로 설명하지 않아야 하는 동작을 이 목록에 추가하세요.
|
|
1185
|
+
settings.access.audio.notify.execute = 음성 명령 실행 알림(오디오)
|
|
1186
|
+
settings.access.audio.use_cache = 오디오 출력 캐시 사용
|
|
1187
|
+
settings.access.audio.use_cache.desc = 활성화하면 정적인 오디오 출력이 매번 생성되는 대신 디스크에 캐시됩니다.
|
|
1188
|
+
settings.access.microphone.notify = 마이크 듣기 시작/중지 오디오 알림
|
|
1189
|
+
settings.access.shortcuts = 단축키 제어
|
|
1190
|
+
settings.access.shortcuts.desc = 음성과 마이크로 애플리케이션을 제어하기 위한 키보드 단축키와 음성 명령을 설정합니다.
|
|
1191
|
+
settings.access.voice_control = 음성 제어 활성화(마이크 사용)
|
|
1192
|
+
settings.access.voice_control.blacklist = 음성 제어 동작 블랙리스트
|
|
1193
|
+
settings.access.voice_control.blacklist.desc = 음성 제어에서 동작을 비활성화합니다. 실행을 방지하려면 블랙리스트에 추가하세요.
|
|
1194
|
+
settings.access.voice_control.model = 모델
|
|
1195
|
+
settings.access.voice_control.model.desc = 음성 제어에서 명령 인식에 사용할 모델
|
|
1196
|
+
settings.advanced.collapse = 고급 옵션 표시/숨김
|
|
1197
|
+
settings.agent.api_use_responses = 에이전트 모드에서 Responses API 사용
|
|
1198
|
+
settings.agent.api_use_responses.desc = 에이전트(자율) 모드에서 ChatCompletions API 대신 Responses API를 사용합니다. OpenAI 모델 전용.
|
|
1199
|
+
settings.agent.func_call.native = 네이티브 API 함수 호출 사용
|
|
1200
|
+
settings.agent.func_call.native.desc = 활성화하면 앱이 내부 pygpt 포맷 대신 네이티브 API 함수 호출을 사용하며, 명령 프롬프트가 사용되지 않습니다. 자율 에이전트 모드 전용.
|
|
1201
|
+
settings.agent.goal.notify = 목표 달성 시 트레이 알림 표시.
|
|
1202
|
+
settings.agent.idx = 사용할 인덱스
|
|
1203
|
+
settings.agent.idx.auto_retrieve = RAG에서 추가 컨텍스트 자동 가져오기
|
|
1204
|
+
settings.agent.idx.auto_retrieve.desc = 인덱스가 제공되면 시작 시 RAG에서 추가 컨텍스트를 자동으로 가져옵니다.
|
|
1205
|
+
settings.agent.idx.desc = 하위 모드가 파일과 채팅일 때만: 자율 및 전문가 모드에서 사용할 인덱스를 선택
|
|
1206
|
+
settings.agent.llama.append_eval = 다음 평가에서 이전 평가 프롬프트를 추가해 비교
|
|
1207
|
+
settings.agent.llama.append_eval.desc = 활성화하면 이전 개선 프롬프트를 다음 루프 평가에서 확인합니다
|
|
1208
|
+
settings.agent.llama.eval_model = 평가용 모델
|
|
1209
|
+
settings.agent.llama.eval_model.desc = 점수/퍼센트(루프) 평가에 사용할 모델. 선택하지 않으면 현재 활성 모델을 사용합니다.
|
|
1210
|
+
settings.agent.llama.iterations = 최대 실행 반복 수
|
|
1211
|
+
settings.agent.llama.iterations.desc = 항상-계속 모드에서 목표 달성 전 최대 실행 반복 수
|
|
1212
|
+
settings.agent.llama.max_eval = 루프에서 최대 평가 단계
|
|
1213
|
+
settings.agent.llama.max_eval.desc = 최종 결과에 도달하기 위한 최대 평가 단계 수 설정, 0 = 무한
|
|
1214
|
+
settings.agent.llama.steps = 최대 단계(반복당)
|
|
1215
|
+
settings.agent.llama.steps.desc = 목표 달성 전 한 반복에서의 최대 단계 수
|
|
1216
|
+
settings.agent.llama.verbose = 자세히(콘솔에 로그 출력)
|
|
1217
|
+
settings.agent.mode = 에이전트 하위 모드
|
|
1218
|
+
settings.agent.mode.desc = 에이전트(자율) 모드에서 사용할 하위 모드
|
|
1219
|
+
settings.agent.openai.response.split = 응답 메시지 분할
|
|
1220
|
+
settings.agent.openai.response.split.desc = OpenAI 에이전트 모드에서 응답 메시지를 별도의 컨텍스트 항목으로 분할합니다.
|
|
1221
|
+
settings.agent.output.render.all = 전체 에이전트 출력을 채팅 뷰에 표시
|
|
1222
|
+
settings.agent.output.render.all.desc = 활성화하면 에이전트가 활성일 때 전체 출력이 채팅 창에 표시됩니다.
|
|
1223
|
+
settings.api_azure_endpoint = API 엔드포인트
|
|
1224
|
+
settings.api_azure_endpoint.desc = Azure OpenAI API 엔드포인트, https://<your-resource-name>.openai.azure.com/
|
|
1225
|
+
settings.api_azure_version = OpenAI API 버전
|
|
1226
|
+
settings.api_azure_version.desc = Azure OpenAI API 버전(예: 2023-07-01-preview)
|
|
1227
|
+
settings.api_endpoint = API 엔드포인트
|
|
1228
|
+
settings.api_endpoint_anthropic = API 엔드포인트
|
|
1229
|
+
settings.api_endpoint_anthropic.desc = Anthropic API 엔드포인트 URL, 기본값: https://api.anthropic.com/v1
|
|
1230
|
+
settings.api_endpoint_deepseek = API 엔드포인트
|
|
1231
|
+
settings.api_endpoint_deepseek.desc = Deepseek API 엔드포인트 URL, 기본값: https://api.deepseek.com/v1
|
|
1232
|
+
settings.api_endpoint.desc = OpenAI API(또는 호환) 엔드포인트 URL, 기본값: https://api.openai.com/v1
|
|
1233
|
+
settings.api_endpoint_google = API 엔드포인트
|
|
1234
|
+
settings.api_endpoint_google.desc = Google API 엔드포인트, 기본값: https://generativelanguage.googleapis.com/v1beta/openai
|
|
1235
|
+
settings.api_endpoint_hugging_face = 라우터 API 엔드포인트
|
|
1236
|
+
settings.api_endpoint_hugging_face.desc = HuggingFace Router 제공자용 API 엔드포인트(OpenAI 호환 ChatCompletions)
|
|
1237
|
+
settings.api_endpoint_mistral = API 엔드포인트
|
|
1238
|
+
settings.api_endpoint_mistral.desc = Mistral AI API 엔드포인트 URL, 기본값: https://api.mistral.ai/v1
|
|
1239
|
+
settings.api_endpoint_open_router = API 엔드포인트
|
|
1240
|
+
settings.api_endpoint_open_router.desc = OpenRouter API 엔드포인트 URL, 기본값: https://openrouter.ai/api/v1
|
|
1241
|
+
settings.api_endpoint_perplexity = API 엔드포인트
|
|
1242
|
+
settings.api_endpoint_perplexity.desc = Perplexity API 엔드포인트 URL, 기본값: https://api.perplexity.ai
|
|
1243
|
+
settings.api_endpoint_xai = API 엔드포인트
|
|
1244
|
+
settings.api_endpoint_xai.desc = xAI API 엔드포인트 URL, 기본값: https://api.x.ai
|
|
1245
|
+
settings.api_key = OpenAI API 키
|
|
1246
|
+
settings.api_key.anthropic = Anthropic API 키
|
|
1247
|
+
settings.api_key.anthropic.desc = Anthropic API 및 Claude 모델에 필요합니다.
|
|
1248
|
+
settings.api_key.deepseek = DeepSeek API 키
|
|
1249
|
+
settings.api_key.deepseek.desc = DeepSeek API에 필요합니다.
|
|
1250
|
+
settings.api_key.desc = OpenAI API에 필요합니다. 커스텀 엔드포인트나 로컬 API를 사용할 경우 어떤 값이든 입력할 수 있습니다.
|
|
1251
|
+
settings.api_key.google = Google API 키
|
|
1252
|
+
settings.api_key.google.desc = Google API 및 Gemini 모델에 필요합니다.
|
|
1253
|
+
settings.api_key.hugging_face = HuggingFace API 키
|
|
1254
|
+
settings.api_key.hugging_face.desc = HuggingFace API에 필요합니다.
|
|
1255
|
+
settings.api_key_management.xai = 관리(Management) API 키
|
|
1256
|
+
settings.api_key_management.xai.desc = xAI 관리 API 키. 원격 벡터 스토어 도구에서 컬렉션 관리를 위해 필요합니다.
|
|
1257
|
+
settings.api_key.mistral = Mistral AI API 키
|
|
1258
|
+
settings.api_key.mistral.desc = Mistral AI API에 필요합니다.
|
|
1259
|
+
settings.api_key.open_router = OpenRouter API 키
|
|
1260
|
+
settings.api_key.open_router.desc = OpenRouter API에 필요합니다.
|
|
1261
|
+
settings.api_key.perplexity = Perplexity API 키
|
|
1262
|
+
settings.api_key.perplexity.desc = Perplexity API에 필요합니다.
|
|
1263
|
+
settings.api_key.voyage = VoyageAI API 키
|
|
1264
|
+
settings.api_key.voyage.desc = Voyage API에 필요합니다(Anthropic 및 DeepSeek API용 임베딩).
|
|
1265
|
+
settings.api_key.xai = xAI API 키
|
|
1266
|
+
settings.api_key.xai.desc = xAI API 및 Grok 모델에 필요합니다.
|
|
1267
|
+
settings.api_native_anthropic = 네이티브 API SDK 사용
|
|
1268
|
+
settings.api_native_anthropic.desc = 호환 OpenAI 클라이언트 대신 네이티브 Anthropic SDK 사용
|
|
1269
|
+
settings.api_native_google = 네이티브 API SDK 사용
|
|
1270
|
+
settings.api_native_google.app_credentials = Google 애플리케이션 자격 증명(경로)
|
|
1271
|
+
settings.api_native_google.app_credentials.desc = credentials.json의 절대 경로(예: /home/user/credentials.json)
|
|
1272
|
+
settings.api_native_google.cloud_location = Google Cloud 위치
|
|
1273
|
+
settings.api_native_google.cloud_location.desc = Google Cloud 프로젝트 위치를 입력하세요(기본: us-central1)
|
|
1274
|
+
settings.api_native_google.cloud_project = Google Cloud 프로젝트
|
|
1275
|
+
settings.api_native_google.cloud_project.desc = Google Cloud 프로젝트 이름을 입력하세요
|
|
1276
|
+
settings.api_native_google.desc = 호환 OpenAI 클라이언트 대신 네이티브 GenAI SDK 사용
|
|
1277
|
+
settings.api_native_google.use_vertex = VertexAI 사용
|
|
1278
|
+
settings.api_native_google.use_vertex.desc = Google GenAI SDK에서 VertexAI 사용을 활성화
|
|
1279
|
+
settings.api_native_xai = 네이티브 API SDK 사용
|
|
1280
|
+
settings.api_native_xai.desc = 호환 OpenAI 클라이언트 대신 네이티브 xAI SDK 사용
|
|
1281
|
+
settings.api_proxy = 프록시 주소
|
|
1282
|
+
settings.api_proxy.desc = API SDK용 선택적 프록시(예: http://proxy.example.com 또는 socks5://user:pass@host:port)
|
|
1283
|
+
settings.api_proxy.enabled = 프록시 사용
|
|
1284
|
+
settings.api_proxy.enabled.desc = API 연결에 프록시를 사용하도록 활성화
|
|
1285
|
+
settings.api_use_responses = 채팅 모드에서 Responses API 사용
|
|
1286
|
+
settings.api_use_responses.desc = 채팅 모드에서 ChatCompletions API 대신 Responses API를 사용합니다
|
|
1287
|
+
settings.api_use_responses_llama = 파일과 채팅 모드(LlamaIndex)에서 Responses API 사용
|
|
1288
|
+
settings.api_use_responses_llama.desc = 파일과 채팅 모드(LlamaIndex)에서 ChatCompletions API 대신 Responses API를 사용합니다. OpenAI 모델 전용.
|
|
1289
|
+
settings.app.env = 애플리케이션 환경(os.environ)
|
|
1290
|
+
settings.app.env.desc = 앱 시작 시 설정할 추가 환경 변수
|
|
1291
|
+
settings.audio.cache.enabled = 캐시 활성화
|
|
1292
|
+
settings.audio.cache.enabled.desc = 음성 합성 생성에 대한 오디오 캐싱을 활성화합니다.
|
|
1293
|
+
settings.audio.cache.max_files = 저장할 최대 파일 수
|
|
1294
|
+
settings.audio.cache.max_files.desc = 디스크에 저장할 캐시 오디오 파일의 최대 개수
|
|
1295
|
+
settings.audio.input.backend = 오디오 입력 백엔드
|
|
1296
|
+
settings.audio.input.backend.desc = 오디오 입력 백엔드를 선택하세요.
|
|
1297
|
+
settings.audio.input.channels = 채널
|
|
1298
|
+
settings.audio.input.channels.desc = 입력 채널, 기본값: 1
|
|
1299
|
+
settings.audio.input.continuous = 연속 오디오 녹음(청크)
|
|
1300
|
+
settings.audio.input.continuous.desc = 메모장에서 긴 오디오 녹음을 위해 청크 단위 녹음을 활성화합니다(음성 메모).
|
|
1301
|
+
settings.audio.input.device = 오디오 입력 장치
|
|
1302
|
+
settings.audio.input.device.desc = 마이크 입력에 사용할 오디오 장치를 선택하세요.
|
|
1303
|
+
settings.audio.input.rate = 샘플링 레이트
|
|
1304
|
+
settings.audio.input.rate.desc = 샘플링 레이트, 기본값: 44100
|
|
1305
|
+
settings.audio.input.stop_interval = 연속 녹음 자동 전사 간격
|
|
1306
|
+
settings.audio.input.stop_interval.desc = 오디오 청크 자동 전사 간격(초), 기본값: 10
|
|
1307
|
+
settings.audio.input.timeout = 녹음 타임아웃
|
|
1308
|
+
settings.audio.input.timeout.continuous = 연속 모드에서 타임아웃 활성화
|
|
1309
|
+
settings.audio.input.timeout.desc = 자동 중지 타임아웃(초), 0은 비활성화, 기본값: 120
|
|
1310
|
+
settings.audio.input.vad.prefix = VAD 접두 패딩(ms)
|
|
1311
|
+
settings.audio.input.vad.silence = VAD 종료 무음(ms)
|
|
1312
|
+
settings.audio.output.backend = 오디오 출력 백엔드
|
|
1313
|
+
settings.audio.output.backend.desc = 오디오 출력 백엔드를 선택하세요.
|
|
1314
|
+
settings.audio.output.device = 오디오 출력 장치
|
|
1315
|
+
settings.audio.output.device.desc = 오디오 출력에 사용할 장치를 선택하세요.
|
|
1316
|
+
settings.check_updates = 시작 시 업데이트 확인
|
|
1317
|
+
settings.check_updates.bg = 백그라운드에서 업데이트 확인
|
|
1318
|
+
settings.cmd.config.collapse = JSON 파라미터
|
|
1319
|
+
settings.cmd.field.desc = `{cmd}` 도구를 활성화합니다.
|
|
1320
|
+
settings.cmd.field.enable = 도구: {cmd}
|
|
1321
|
+
settings.cmd.field.instruction = 모델 지침
|
|
1322
|
+
settings.cmd.field.params = JSON 매개변수(도구 인자)
|
|
1323
|
+
settings.cmd.field.tooltip = `{cmd}` 도구 활성화
|
|
1324
|
+
settings.context_threshold = 컨텍스트 임계값
|
|
1325
|
+
settings.context_threshold.desc = 응답을 위해 예약할 토큰
|
|
1326
|
+
settings.ctx.allow_item_delete = 컨텍스트 항목 삭제 허용
|
|
1327
|
+
settings.ctx.allow_item_delete.desc = 대화 항목 삭제 링크 표시를 활성화
|
|
1328
|
+
settings.ctx.attachment.img = 이미지를 추가 컨텍스트로 허용
|
|
1329
|
+
settings.ctx.attachment.img.desc = 활성화하면 이미지를 추가 컨텍스트로 사용할 수 있습니다
|
|
1330
|
+
settings.ctx.attachment.query.model = 인덱스 질의용 모델
|
|
1331
|
+
settings.ctx.attachment.query.model.desc = RAG 옵션 선택 시 질의 생성 및 인덱스 질의에 사용할 모델
|
|
1332
|
+
settings.ctx.attachment.rag.history = RAG 질의에 대화 기록 사용
|
|
1333
|
+
settings.ctx.attachment.rag.history.desc = 활성화하면 모드가 RAG 또는 요약일 때 질의를 준비하는 데 전체 대화 내용을 사용합니다.
|
|
1334
|
+
settings.ctx.attachment.rag.history.max_items = RAG 제한
|
|
1335
|
+
settings.ctx.attachment.rag.history.max_items.desc = 'RAG 질의에 대화 기록 사용'이 활성화된 경우에만: RAG 질의 생성 시 사용할 최근 대화 항목 수 제한. 0 = 제한 없음.
|
|
1336
|
+
settings.ctx.attachment.summary.model = 첨부 내용 요약용 모델
|
|
1337
|
+
settings.ctx.attachment.summary.model.desc = 요약 옵션 선택 시 파일 내용 요약을 생성하는 데 사용할 모델
|
|
1338
|
+
settings.ctx.attachment.verbose = 자세히 모드
|
|
1339
|
+
settings.ctx.attachment.verbose.desc = 콘솔에 첨부 사용 로그 출력
|
|
1340
|
+
settings.ctx.audio = 항상 오디오 아이콘 표시
|
|
1341
|
+
settings.ctx.auto_summary = 컨텍스트 자동 요약
|
|
1342
|
+
settings.ctx.auto_summary.desc = 왼쪽 대화 목록에서 컨텍스트를 자동으로 요약합니다.
|
|
1343
|
+
settings.ctx.auto_summary.model = 자동 요약에 사용할 모델
|
|
1344
|
+
settings.ctx.auto_summary.model.desc = 왼쪽 대화 목록에서 컨텍스트 요약 및 제목을 준비하는 데 사용할 모델을 선택하세요.
|
|
1345
|
+
settings.ctx.code_interpreter = 코드 인터프리터 출력 표시
|
|
1346
|
+
settings.ctx.code_interpreter.desc = 활성화하면 Assistant API의 코드 인터프리터 출력이 실시간(스트림 모드)으로 표시됩니다.
|
|
1347
|
+
settings.ctx.convert_lists = 목록을 문단으로 변환
|
|
1348
|
+
settings.ctx.convert_lists.desc = 마크다운 렌더러 전용
|
|
1349
|
+
settings.ctx.copy_code = 코드 블록에 "클립보드에 복사" 표시
|
|
1350
|
+
settings.ctx.records.folders.top = 컨텍스트 그룹을 목록 상단에 표시
|
|
1351
|
+
settings.ctx.records.groups.separators = 그룹에서 날짜 구분선 표시
|
|
1352
|
+
settings.ctx.records.limit = 목록에 표시할 최근 컨텍스트 제한(0 = 무제한)
|
|
1353
|
+
settings.ctx.records.pinned.separators = 고정 항목에서 날짜 구분선 표시
|
|
1354
|
+
settings.ctx.records.separators = 컨텍스트 목록에서 날짜 구분선 표시
|
|
1355
|
+
settings.ctx.search_content = 제목뿐 아니라 대화 내용도 검색
|
|
1356
|
+
settings.ctx.search.desc = 컨텍스트 항목 내용 검색을 활성화
|
|
1357
|
+
settings.ctx.sources = LlamaIndex 소스 표시
|
|
1358
|
+
settings.ctx.sources.desc = 활성화하면 사용된 소스를 응답에 표시합니다(가능한 경우). 스트리밍 채팅에서는 작동하지 않을 수 있습니다.
|
|
1359
|
+
settings.ctx.urls.internal = 내장 브라우저로 URL 열기
|
|
1360
|
+
settings.ctx.urls.internal.desc = 모든 URL을 외부 브라우저 대신 내장 브라우저(Chromium)에서 열도록 활성화합니다.
|
|
1361
|
+
settings.ctx.use_extra = 추가 컨텍스트 출력 사용
|
|
1362
|
+
settings.ctx.use_extra.desc = 활성화하면 명령 결과의 일반 텍스트 출력(가능한 경우)이 JSON 출력과 함께 표시됩니다.
|
|
1363
|
+
settings.debug.show_menu = 디버그 메뉴 표시
|
|
1364
|
+
settings.defaults.app.confirm = 공장 앱 설정을 불러올까요?
|
|
1365
|
+
settings.defaults.user.confirm = 현재 변경 사항을 취소할까요?
|
|
1366
|
+
settings.dict.delete.confirm = 목록에서 항목을 제거할까요?
|
|
1367
|
+
settings.download.dir = 파일 다운로드 디렉터리
|
|
1368
|
+
settings.download.dir.desc = 다운로드 파일을 저장할 하위 디렉터리(예: Assistants 모드에서는 "data" 내부)
|
|
1369
|
+
settings.experts.api_use_responses = 전문가 모드(마스터)에서 Responses API 사용
|
|
1370
|
+
settings.experts.api_use_responses.desc = 전문가(마스터 모델)에서 ChatCompletions API 대신 Responses API를 사용합니다. OpenAI 모델 전용.
|
|
1371
|
+
settings.experts.func_call.native = 네이티브 API 함수 호출 사용
|
|
1372
|
+
settings.experts.func_call.native.desc = 활성화하면 앱이 내부 pygpt 포맷 대신 네이티브 API 함수 호출을 사용하며, 명령 프롬프트가 사용되지 않습니다. 전문가 전용.
|
|
1373
|
+
settings.experts.internal.api_use_responses = 전문가 모드(슬레이브)에서 Responses API 사용
|
|
1374
|
+
settings.experts.internal.api_use_responses.desc = 전문가 인스턴스(슬레이브 모델)에서 ChatCompletions API 대신 Responses API를 사용합니다. OpenAI 모델 전용.
|
|
1375
|
+
settings.experts.mode = 전문가 하위 모드
|
|
1376
|
+
settings.experts.mode.desc = 전문가에 사용할 하위 모드
|
|
1377
|
+
settings.experts.use_agent = 전문가 추론에 에이전트 사용
|
|
1378
|
+
settings.experts.use_agent.desc = 활성화하면 전문가는 응답 생성 및 도구 호출에서 에이전트를 사용합니다.
|
|
1379
|
+
settings.font_size = 글꼴 크기(채팅 일반 텍스트, 메모장)
|
|
1380
|
+
settings.font_size.ctx = 글꼴 크기(컨텍스트 목록)
|
|
1381
|
+
settings.font_size.input = 글꼴 크기(입력)
|
|
1382
|
+
settings.font_size.tip = 팁: CTRL + 마우스 휠로 글꼴 크기를 변경할 수 있습니다
|
|
1383
|
+
settings.font_size.toolbox = 글꼴 크기(도구 상자)
|
|
1384
|
+
settings.frequency_penalty = 빈도 페널티
|
|
1385
|
+
settings.func_call.native = 네이티브 API 함수 호출 사용
|
|
1386
|
+
settings.func_call.native.desc = 활성화하면 앱이 내부 pygpt 포맷 및 아래의 명령 프롬프트 대신 네이티브 API 함수 호출을 사용합니다. 채팅 및 어시스턴트 모드 전용.
|
|
1387
|
+
settings.img_dialog_open = 생성 후 이미지 대화상자 열기(이미지 모드)
|
|
1388
|
+
settings.img_prompt_model = 프롬프트 생성 모델
|
|
1389
|
+
settings.img_prompt_model.desc = 이미지 생성 전에 프롬프트를 다듬는 데 사용할 LLM(이미지 모델 아님)
|
|
1390
|
+
settings.img_quality = 이미지 품질
|
|
1391
|
+
settings.img_resolution = 이미지 크기
|
|
1392
|
+
settings.layout.animation.disable = 애니메이션 비활성화
|
|
1393
|
+
settings.layout.animation.disable.desc = 로더 등 레이아웃 애니메이션을 비활성화합니다.
|
|
1394
|
+
settings.layout.density = 레이아웃 밀도
|
|
1395
|
+
settings.layout.dialog.geometry.store = 대화상자 창 위치 저장
|
|
1396
|
+
settings.layout.dpi.factor = DPI 계수
|
|
1397
|
+
settings.layout.dpi.scaling = DPI 스케일링
|
|
1398
|
+
settings.layout.minimized = 최소화로 시작
|
|
1399
|
+
settings.layout.tooltips = 팁 표시(도움말 설명)
|
|
1400
|
+
settings.layout.tray = 트레이 아이콘 표시
|
|
1401
|
+
settings.layout.tray.desc = 재시작 필요. 트레이 아이콘은 "스크린샷으로 질문" 또는 "메모장 열기" 같은 추가 기능을 제공합니다.
|
|
1402
|
+
settings.layout.tray.minimize = 종료 시 트레이로 최소화
|
|
1403
|
+
settings.layout.tray.minimize.desc = 이 옵션을 사용하려면 트레이 아이콘이 활성화되어 있어야 합니다.
|
|
1404
|
+
settings.llama.extra.api.warning = 경고: 인덱싱 시 임베딩 모델에 대한 API 호출이 사용됩니다. 각 인덱싱은 추가 토큰을 소비합니다. OpenAI 페이지에서 토큰 사용량을 항상 관리하세요!
|
|
1405
|
+
settings.llama.extra.btn.idx_auto = DB 실시간 자동 인덱싱(대화 백그라운드)
|
|
1406
|
+
settings.llama.extra.btn.idx_auto.index = 자동 인덱싱에 사용할 인덱스 ID
|
|
1407
|
+
settings.llama.extra.btn.idx_auto.modes = 자동 인덱싱을 활성화할 모드
|
|
1408
|
+
settings.llama.extra.btn.idx_db_all = DB(전체)
|
|
1409
|
+
settings.llama.extra.btn.idx_db_update = DB(업데이트)
|
|
1410
|
+
settings.llama.extra.btn.idx_files_all = 파일(전체)
|
|
1411
|
+
settings.llama.extra.btn.idx_head = 여기를 클릭하여 파일 또는 DB를 인덱싱:
|
|
1412
|
+
settings.llama.extra.db.never = (없음)
|
|
1413
|
+
settings.llama.extra.legend = 범례:\nDB(전체) - 전체 대화 DB를 재인덱싱\nDB(업데이트) - 마지막 인덱싱 이후의 DB만 인덱싱\n파일(전체) - 'data' 디렉터리의 모든 파일 인덱싱\nDB 자동 인덱싱 - 백그라운드에서 새 대화를 자동 인덱싱(추가된 데이터만)\n
|
|
1414
|
+
settings.llama.extra.loaders = 내장 데이터 로더
|
|
1415
|
+
settings.llama.hub.loaders = 추가 온라인 데이터 로더(LlamaHub) - 파이썬 버전 전용, 컴파일/Snap 버전에서는 동작하지 않음
|
|
1416
|
+
settings.llama.hub.loaders.args = 데이터 로더용 추가 키워드 인자(**kwargs)
|
|
1417
|
+
settings.llama.hub.loaders.args.desc = 설정, API 키 등 데이터 로더에 전달할 추가 키워드 인자(**kwargs). 이 인자들은 로더에 전달됩니다. 지정 로더에 허용되는 인자 목록은 PyGPT 문서 또는 LlamaHub 로더 레퍼런스를 참고하세요. 한 줄에 하나의 인자.
|
|
1418
|
+
settings.llama.hub.loaders.use_local = 비디오/오디오 및 이미지(비전) 로더에서 로컬 모델 사용
|
|
1419
|
+
settings.llama.hub.loaders.use_local.desc = 비디오/오디오 및 이미지(비전) 로더에서 로컬 모델 사용을 활성화합니다. 비활성화하면 API 모델(GPT-4 Vision 및 Whisper)이 사용됩니다. 참고: 로컬 모델은 파이썬 버전에서만 동작합니다(컴파일/Snap 제외).
|
|
1420
|
+
settings.llama.idx.chat.auto_retrieve = 추가 컨텍스트 자동 가져오기
|
|
1421
|
+
settings.llama.idx.chat.auto_retrieve.desc = 활성화하면 매 질의마다 추가 컨텍스트를 가져와 시스템 프롬프트에 추가합니다.
|
|
1422
|
+
settings.llama.idx.chat.mode = 채팅 모드
|
|
1423
|
+
settings.llama.idx.chat.mode.desc = 도움말은 LlamaIndex 문서를 참고하세요
|
|
1424
|
+
settings.llama.idx.custom_meta = 인덱싱 문서(파일)에 추가/대체할 커스텀 메타데이터
|
|
1425
|
+
settings.llama.idx.custom_meta.desc = 지정 확장자에 대해 커스텀 메타데이터 키=>값을 정의합니다. 확장자는 콤마로 구분.\n허용 플레이스홀더: {path}, {relative_path} {filename}, {dirname}, {relative_dir} {ext}, {size}, {mtime}, {date}, {date_time}, {time}, {timestamp}
|
|
1426
|
+
settings.llama.idx.custom_meta.web = 인덱싱 문서(웹/외부 콘텐츠)에 추가/대체할 커스텀 메타데이터
|
|
1427
|
+
settings.llama.idx.custom_meta.web.desc = 지정 외부 데이터 로더에 대해 커스텀 메타데이터 키=>값을 정의합니다.\n허용 플레이스홀더: {date}, {date_time}, {time}, {timestamp} + {data loader args}
|
|
1428
|
+
settings.llama.idx.embeddings.args = 전역 임베딩 제공자 **kwargs
|
|
1429
|
+
settings.llama.idx.embeddings.args.desc = 임베딩 제공자 인스턴스에 전달할 추가 키워드 인자(**kwargs)(예: 모델 이름). 지정 임베딩 제공자에 필요한 인자 목록은 LlamaIndex API 레퍼런스를 참고하세요.
|
|
1430
|
+
settings.llama.idx.embeddings.default = 첨부용 기본 임베딩 제공자
|
|
1431
|
+
settings.llama.idx.embeddings.default.desc = 첨부에서 사용할 임베딩 모델을 제공자별로 정의
|
|
1432
|
+
settings.llama.idx.embeddings.env = 임베딩 제공자 ENV 변수
|
|
1433
|
+
settings.llama.idx.embeddings.env.desc = 임베딩 제공자 초기화 전에 설정할 환경 변수(API 키 등). {config_key}로 앱 설정 값을 참조할 수 있습니다.
|
|
1434
|
+
settings.llama.idx.embeddings.limit.rpm = RPM 제한
|
|
1435
|
+
settings.llama.idx.embeddings.limit.rpm.desc = 임베딩 API 호출 제한 - 분당 최대 요청 수(RPM)를 설정, 0 = 제한 없음
|
|
1436
|
+
settings.llama.idx.embeddings.provider = 임베딩 제공자
|
|
1437
|
+
settings.llama.idx.excluded.ext = 제외할 파일 확장자
|
|
1438
|
+
settings.llama.idx.excluded.ext.desc = 해당 확장자에 대한 데이터 로더가 없을 때 제외할 확장자 목록(콤마로 구분)
|
|
1439
|
+
settings.llama.idx.excluded.force = 파일 강제 제외
|
|
1440
|
+
settings.llama.idx.excluded.force.desc = 활성화하면 해당 확장자의 로더가 활성일 때도 제외 목록이 적용됩니다.
|
|
1441
|
+
settings.llama.idx.list = 인덱스
|
|
1442
|
+
settings.llama.idx.react = 파일과 채팅 모드에서 도구 호출에 ReAct 에이전트 사용
|
|
1443
|
+
settings.llama.idx.react.desc = 활성화하면 "+도구" 옵션이 켜져 있을 때 ReAct 에이전트를 사용합니다.
|
|
1444
|
+
settings.llama.idx.recursive = 디렉터리 재귀 인덱싱
|
|
1445
|
+
settings.llama.idx.replace_old = 재인덱싱 시 인덱스에서 이전 문서 버전 대체
|
|
1446
|
+
settings.llama.idx.replace_old.desc = 활성화하면 최신 버전을 인덱싱할 때 이전 버전의 문서가 인덱스에서 삭제됩니다.
|
|
1447
|
+
settings.llama.idx.stop.error = 오류 발생 시 인덱싱 중지
|
|
1448
|
+
settings.llama.idx.stop.error.desc = 활성화하면 어떤 오류든 발생 시 인덱싱을 중지합니다.
|
|
1449
|
+
settings.llama.idx.storage = 벡터 스토어
|
|
1450
|
+
settings.llama.idx.storage.args = 벡터 스토어(**kwargs)
|
|
1451
|
+
settings.llama.idx.storage.args.desc = 벡터 스토어 제공자 인스턴스에 전달할 추가 키워드 인자(**kwargs)(예: API 키). 지정 벡터 스토어 제공자에 필요한 인자 목록은 LlamaIndex API 레퍼런스를 참고하세요.
|
|
1452
|
+
settings.lock_modes = 호환되지 않는 모드 잠금
|
|
1453
|
+
settings.max_output_tokens = 최대 출력 토큰
|
|
1454
|
+
settings.max_requests_limit = RPM 제한
|
|
1455
|
+
settings.max_requests_limit.desc = 분당 최대 요청 수(RPM) 제한을 설정, 0 = 제한 없음
|
|
1456
|
+
settings.max_total_tokens = 최대 총 토큰
|
|
1457
|
+
settings.notepad.num = 메모장 개수
|
|
1458
|
+
settings.organization_key = OpenAI ORGANIZATION 키
|
|
1459
|
+
settings.personalize.about = 나에 대해
|
|
1460
|
+
settings.personalize.about.desc = 자신에 대한 정보를 제공하세요(예: "내 이름은... 나이는 30살이고 관심사는..."). 이는 모델의 시스템 프롬프트에 포함됩니다.\n경고: AI를 "친구"로 사용하지 마세요. 현실의 우정이 AI를 우정 대체물로 사용하는 것보다 낫습니다. AI와의 상호작용에 감정적으로 몰입하지 마세요.
|
|
1461
|
+
settings.personalize.modes = 모드에서 활성화
|
|
1462
|
+
settings.personalize.modes.desc = 개인화된 "about" 프롬프트를 사용할 모드를 선택하세요.
|
|
1463
|
+
settings.presence_penalty = 존재 페널티
|
|
1464
|
+
settings.prompt.agent.continue = 에이전트: 계속[레거시]
|
|
1465
|
+
settings.prompt.agent.continue.always = 에이전트: 계속(항상, 더 많은 단계)[레거시]
|
|
1466
|
+
settings.prompt.agent.continue.always.desc = 자동으로 항상 계속하도록 보내는 프롬프트(더 많은 추론)
|
|
1467
|
+
settings.prompt.agent.continue.desc = 대화를 자동으로 계속하도록 보내는 프롬프트
|
|
1468
|
+
settings.prompt.agent.continue.llama = 에이전트: 계속(항상, 더 많은 단계)[LlamaIndex 에이전트]
|
|
1469
|
+
settings.prompt.agent.continue.llama.desc = 자동으로 항상 계속하도록 보내는 프롬프트(더 많은 추론)
|
|
1470
|
+
settings.prompt.agent.goal = 에이전트: 목표 업데이트[레거시]
|
|
1471
|
+
settings.prompt.agent.goal.desc = 현재 목표 상태를 업데이트하는 방법을 지시하는 프롬프트
|
|
1472
|
+
settings.prompt.agent.instruction = 에이전트: 시스템 지침[레거시]
|
|
1473
|
+
settings.prompt.agent.instruction.desc = 자율 모드를 처리하는 방법을 지시하는 프롬프트
|
|
1474
|
+
settings.prompt.agent.llama.eval = 에이전트: 루프 평가 프롬프트[LlamaIndex] - % 점수
|
|
1475
|
+
settings.prompt.agent.llama.eval.complete = 에이전트: 루프 평가 프롬프트[LlamaIndex] - % 완료
|
|
1476
|
+
settings.prompt.agent.llama.eval.complete.desc = 루프/평가 옵션이 활성화되었을 때 완료율(퍼센트) 평가에 사용하는 프롬프트
|
|
1477
|
+
settings.prompt.agent.llama.eval.desc = 루프/평가 옵션이 활성화되었을 때 점수 평가에 사용하는 프롬프트
|
|
1478
|
+
settings.prompt.cmd = 명령 실행: 지침
|
|
1479
|
+
settings.prompt.cmd.desc = 플레이스홀더: {schema}, {extra}
|
|
1480
|
+
settings.prompt.cmd.extra = 명령 실행: 추가 푸터(비-어시스턴트 모드)
|
|
1481
|
+
settings.prompt.cmd.extra.assistants = 명령 실행: 추가 푸터(어시스턴트 모드 전용)
|
|
1482
|
+
settings.prompt.cmd.extra.assistants.desc = 이미 구성된 원격 환경(Assistants)과 로컬 명령을 구분하기 위한 추가 지침.
|
|
1483
|
+
settings.prompt.ctx.auto_summary.system = 컨텍스트: 자동 요약(시스템 프롬프트)
|
|
1484
|
+
settings.prompt.ctx.auto_summary.user = 컨텍스트: 자동 요약(사용자 메시지)
|
|
1485
|
+
settings.prompt.ctx.auto_summary.user.desc = 플레이스홀더: {input}, {output}
|
|
1486
|
+
settings.prompt.expert = 전문가: 마스터 프롬프트
|
|
1487
|
+
settings.prompt.expert.desc = 마스터 전문가가 슬레이브 전문가를 처리하는 방법에 대한 지침(시스템 프롬프트). 슬레이브 전문가는 프리셋의 지침을 사용합니다.
|
|
1488
|
+
settings.prompt.img = 이미지 생성
|
|
1489
|
+
settings.prompt.img.desc = 이미지 모델용 프롬프트를 생성하는 프롬프트(raw 모드가 비활성화된 경우). 이미지/비디오 모드 전용.
|
|
1490
|
+
settings.prompt.video = 비디오 생성
|
|
1491
|
+
settings.prompt.video.desc = 비디오 모델용 프롬프트를 생성하는 프롬프트(raw 모드가 비활성화된 경우). 이미지/비디오 모드 전용.
|
|
1492
|
+
settings.remote_tools.anthropic.code_execution = 코드 실행
|
|
1493
|
+
settings.remote_tools.anthropic.code_execution.desc = 코드 실행 원격 도구를 활성화합니다.
|
|
1494
|
+
settings.remote_tools.anthropic.file_search = 웹 검색
|
|
1495
|
+
settings.remote_tools.anthropic.file_search.desc = 웹 검색 원격 도구를 활성화합니다.
|
|
1496
|
+
settings.remote_tools.anthropic.mcp = 원격 MCP
|
|
1497
|
+
settings.remote_tools.anthropic.mcp.desc = MCP 원격 도구/커넥터를 활성화합니다.
|
|
1498
|
+
settings.remote_tools.anthropic.mcp.mcp_servers = 원격 MCP 설정(mcp_servers)
|
|
1499
|
+
settings.remote_tools.anthropic.mcp.mcp_servers.desc = JSON 형식의 설정(요청에 사용됨)
|
|
1500
|
+
settings.remote_tools.anthropic.mcp.tools = 원격 MCP 설정(tools)
|
|
1501
|
+
settings.remote_tools.anthropic.mcp.tools.desc = JSON 형식의 설정(요청에 사용됨)
|
|
1502
|
+
settings.remote_tools.anthropic.web_fetch = 웹 가져오기
|
|
1503
|
+
settings.remote_tools.anthropic.web_fetch.desc = 웹 가져오기 원격 도구를 활성화합니다.
|
|
1504
|
+
settings.remote_tools.anthropic.web_search = 웹 검색
|
|
1505
|
+
settings.remote_tools.anthropic.web_search.desc = 웹 검색 원격 도구를 활성화합니다.
|
|
1506
|
+
settings.remote_tools.code_interpreter = 코드 인터프리터
|
|
1507
|
+
settings.remote_tools.code_interpreter.desc = 코드 인터프리터 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1508
|
+
settings.remote_tools.file_search = 파일 검색
|
|
1509
|
+
settings.remote_tools.file_search.args = 파일 검색 벡터 스토어 ID
|
|
1510
|
+
settings.remote_tools.file_search.args.desc = 벡터 스토어 ID(콤마로 구분)
|
|
1511
|
+
settings.remote_tools.file_search.desc = 파일 검색 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1512
|
+
settings.remote_tools.google.code_interpreter = 코드 인터프리터
|
|
1513
|
+
settings.remote_tools.google.code_interpreter.desc = 코드 인터프리터 원격 도구를 활성화합니다.
|
|
1514
|
+
settings.remote_tools.google.file_search = 파일 검색
|
|
1515
|
+
settings.remote_tools.google.file_search.args = 파일 검색 벡터 스토어 ID
|
|
1516
|
+
settings.remote_tools.google.file_search.args.desc = 벡터 스토어 ID(콤마로 구분)
|
|
1517
|
+
settings.remote_tools.google.file_search.desc = 파일 검색 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1518
|
+
settings.remote_tools.google.maps = Google 지도
|
|
1519
|
+
settings.remote_tools.google.maps.desc = Google 지도 원격 도구를 활성화합니다.
|
|
1520
|
+
settings.remote_tools.google.url_ctx = URL 컨텍스트
|
|
1521
|
+
settings.remote_tools.google.url_ctx.desc = URL 컨텍스트 원격 도구를 활성화합니다.
|
|
1522
|
+
settings.remote_tools.google.web_search = 웹 검색
|
|
1523
|
+
settings.remote_tools.google.web_search.desc = 웹 검색 원격 도구를 활성화합니다.
|
|
1524
|
+
settings.remote_tools.image = 이미지 생성
|
|
1525
|
+
settings.remote_tools.image.desc = 이미지 생성 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1526
|
+
settings.remote_tools.mcp = 원격 MCP
|
|
1527
|
+
settings.remote_tools.mcp.args = 원격 MCP 설정
|
|
1528
|
+
settings.remote_tools.mcp.args.desc = JSON 형식의 설정(요청에 사용됨)
|
|
1529
|
+
settings.remote_tools.mcp.desc = MCP 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1530
|
+
settings.remote_tools.web_search = 웹 검색
|
|
1531
|
+
settings.remote_tools.web_search.desc = 웹 검색 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1532
|
+
settings.remote_tools.xai.code_execution = 코드 실행
|
|
1533
|
+
settings.remote_tools.xai.code_execution.desc = 코드 실행 원격 도구를 활성화합니다.
|
|
1534
|
+
settings.remote_tools.xai.collections = 컬렉션 검색
|
|
1535
|
+
settings.remote_tools.xai.collections.args = 컬렉션 ID
|
|
1536
|
+
settings.remote_tools.xai.collections.args.desc = 컬렉션 ID(콤마로 구분)\n참고: 원격 벡터 스토어 도구에서 컬렉션을 관리하려면 관리 API 키가 필요합니다.
|
|
1537
|
+
settings.remote_tools.xai.collections.desc = 컬렉션 검색 원격 도구를 활성화합니다.
|
|
1538
|
+
settings.remote_tools.xai.mcp = 원격 MCP
|
|
1539
|
+
settings.remote_tools.xai.mcp.args = 원격 MCP 설정
|
|
1540
|
+
settings.remote_tools.xai.mcp.args.desc = JSON 형식의 설정(요청에 사용됨)
|
|
1541
|
+
settings.remote_tools.xai.mcp.desc = MCP 원격 도구를 활성화합니다 - Responses API 전용.
|
|
1542
|
+
settings.remote_tools.xai.mode = 라이브 검색 모드
|
|
1543
|
+
settings.remote_tools.xai.mode.desc = 모드 선택: auto|on|off
|
|
1544
|
+
settings.remote_tools.xai.sources.news = 소스: 뉴스
|
|
1545
|
+
settings.remote_tools.xai.sources.news.desc = 라이브 검색에서 뉴스 활성화
|
|
1546
|
+
settings.remote_tools.xai.sources.web = 소스: 웹
|
|
1547
|
+
settings.remote_tools.xai.sources.web.desc = 라이브 검색에서 웹 활성화
|
|
1548
|
+
settings.remote_tools.xai.sources.x = 소스: X/Twitter
|
|
1549
|
+
settings.remote_tools.xai.sources.x.desc = 라이브 검색에서 X/Twitter 활성화
|
|
1550
|
+
settings.remote_tools.xai.web_search = 웹 검색
|
|
1551
|
+
settings.remote_tools.xai.web_search.desc = 웹 검색 원격 도구를 활성화합니다.
|
|
1552
|
+
settings.remote_tools.xai.x_search = X 검색
|
|
1553
|
+
settings.remote_tools.xai.x_search.desc = X 검색 원격 도구를 활성화합니다.
|
|
1554
|
+
settings.render.code_syntax = 코드 구문 강조
|
|
1555
|
+
settings.render.code_syntax.disabled = 구문 강조 비활성화
|
|
1556
|
+
settings.render.code_syntax.final_max_chars = 강조할 최대 문자 수(정적)
|
|
1557
|
+
settings.render.code_syntax.final_max_chars.desc = 구문 강조: 정적 콘텐츠에서 강조할 최대 문자 수, 0은 비활성화
|
|
1558
|
+
settings.render.code_syntax.final_max_lines = 강조할 최대 줄 수(정적)
|
|
1559
|
+
settings.render.code_syntax.final_max_lines.desc = 구문 강조: 정적 콘텐츠에서 강조할 최대 줄 수, 0은 비활성화
|
|
1560
|
+
settings.render.code_syntax.stream_max_lines = 강조할 최대 줄 수(실시간)
|
|
1561
|
+
settings.render.code_syntax.stream_max_lines.desc = 구문 강조: 스트림에서 강조할 최대 줄 수, 0은 비활성화
|
|
1562
|
+
settings.render.code_syntax.stream_n_chars = N문자마다 강조(실시간)
|
|
1563
|
+
settings.render.code_syntax.stream_n_chars.desc = 구문 강조: 스트림에서 N문자마다 강조
|
|
1564
|
+
settings.render.code_syntax.stream_n_line = N줄마다 강조(실시간)
|
|
1565
|
+
settings.render.code_syntax.stream_n_line.desc = 구문 강조: 스트림에서 N줄마다 강조
|
|
1566
|
+
settings.render.engine = 렌더링 엔진
|
|
1567
|
+
settings.render.memory.limit = 메모리 제한
|
|
1568
|
+
settings.render.memory.limit.desc = 렌더러 메모리 제한; 0으로 설정하면 비활성화. 0보다 크면 제한에 도달했을 때 메모리 해제를 시도합니다. 형식: 3.5GB, 2GB, 2048MB, 1_000_000. 최소: 2GB.
|
|
1569
|
+
settings.render.msg.user.collapse.px = 사용자 메시지 자동 접기(px)
|
|
1570
|
+
settings.render.msg.user.collapse.px.desc = 사용자 메시지가 N픽셀 높이를 넘으면 자동 접기, 0은 비활성화
|
|
1571
|
+
settings.render.open_gl = OpenGL 하드웨어 가속
|
|
1572
|
+
settings.render.plain = 출력에서 마크다운 포맷 비활성화(RAW 일반 텍스트 모드)
|
|
1573
|
+
settings.render.web.only.desc = WebEngine/Chromium 렌더링 엔진 전용
|
|
1574
|
+
settings.restart.required = 이 옵션을 적용하려면 애플리케이션 재시작이 필요합니다.
|
|
1575
|
+
settings.section.access = 접근성
|
|
1576
|
+
settings.section.agent = 에이전트 및 전문가
|
|
1577
|
+
settings.section.agent.autonomous = 자율
|
|
1578
|
+
settings.section.agent.experts = 전문가
|
|
1579
|
+
settings.section.agent.llama = 에이전트
|
|
1580
|
+
settings.section.api_keys = API 키
|
|
1581
|
+
settings.section.api_keys.anthropic = Anthropic
|
|
1582
|
+
settings.section.api_keys.azure_openai = Azure OpenAI
|
|
1583
|
+
settings.section.api_keys.deepseek = DeepSeek
|
|
1584
|
+
settings.section.api_keys.google = Google
|
|
1585
|
+
settings.section.api_keys.huggingface = HuggingFace
|
|
1586
|
+
settings.section.api_keys.mistral_ai = Mistral AI
|
|
1587
|
+
settings.section.api_keys.openai = OpenAI
|
|
1588
|
+
settings.section.api_keys.openrouter = OpenRouter
|
|
1589
|
+
settings.section.api_keys.perplexity = Perplexity
|
|
1590
|
+
settings.section.api_keys.voyage = VoyageAI
|
|
1591
|
+
settings.section.api_keys.xai = xAI
|
|
1592
|
+
settings.section.audio = 오디오
|
|
1593
|
+
settings.section.audio.cache = 캐시
|
|
1594
|
+
settings.section.audio.device = 장치
|
|
1595
|
+
settings.section.audio.options = 옵션
|
|
1596
|
+
settings.section.ctx = 컨텍스트
|
|
1597
|
+
settings.section.debug = 디버그
|
|
1598
|
+
settings.section.files = 파일 및 첨부
|
|
1599
|
+
settings.section.general = 일반
|
|
1600
|
+
settings.section.images = 이미지 및 비디오
|
|
1601
|
+
settings.section.images.image = 이미지
|
|
1602
|
+
settings.section.images.video = 비디오
|
|
1603
|
+
settings.section.layout = 레이아웃
|
|
1604
|
+
settings.section.layout.code_syntax = 코드 구문
|
|
1605
|
+
settings.section.llama_index = 인덱스/LlamaIndex
|
|
1606
|
+
settings.section.llama-index.chat = 채팅
|
|
1607
|
+
settings.section.llama-index.data_loaders = 데이터 로더
|
|
1608
|
+
settings.section.llama-index.embeddings = 임베딩
|
|
1609
|
+
settings.section.llama-index.indexing = 인덱싱
|
|
1610
|
+
settings.section.llama-index.store = 벡터 스토어
|
|
1611
|
+
settings.section.llama-index.update = 업데이트
|
|
1612
|
+
settings.section.model = 모델
|
|
1613
|
+
settings.section.personalize = 개인화
|
|
1614
|
+
settings.section.prompts = 프롬프트
|
|
1615
|
+
settings.section.remote_tools = 원격 도구
|
|
1616
|
+
settings.section.remote_tools.Anthropic = Anthropic
|
|
1617
|
+
settings.section.remote_tools.google = Google
|
|
1618
|
+
settings.section.remote_tools.openai = OpenAI
|
|
1619
|
+
settings.section.remote_tools.xAI = xAI
|
|
1620
|
+
settings.section.tab.general = 일반
|
|
1621
|
+
settings.section.updates = 업데이트
|
|
1622
|
+
settings.section.vision = 비전 및 카메라
|
|
1623
|
+
settings.section.vision.camera = 카메라
|
|
1624
|
+
settings.store_history = 기록 저장
|
|
1625
|
+
settings.store_history_time = 기록에 시간 저장
|
|
1626
|
+
settings.temperature = 온도(Temperature)
|
|
1627
|
+
settings.theme.markdown = 채팅 창에 테마 색상 사용
|
|
1628
|
+
settings.theme.style = 스타일(채팅)
|
|
1629
|
+
settings.top_p = Top-p
|
|
1630
|
+
settings.upload.data_dir = data 디렉터리에 이미지, 캡처, 업로드 저장
|
|
1631
|
+
settings.upload.data_dir.desc = 모든 항목을 단일 data 디렉터리에 저장하도록 활성화
|
|
1632
|
+
settings.upload.store = 작업 디렉터리 업로드 폴더에 첨부 저장
|
|
1633
|
+
settings.upload.store.desc = 향후 사용을 위해 업로드된 첨부의 로컬 사본을 저장하도록 활성화
|
|
1634
|
+
settings.use_context = 컨텍스트(메모리) 사용
|
|
1635
|
+
settings.video.aspect_ratio = 화면 비율
|
|
1636
|
+
settings.video.aspect_ratio.desc = 프레임 비율(예: 16:9, 9:16, 1:1); 선택한 모델에 따라 사용 가능 여부가 달라집니다
|
|
1637
|
+
settings.video.duration = 비디오 길이
|
|
1638
|
+
settings.video.duration.desc = 클립 길이(초); 모델에 따라 제한이 달라질 수 있습니다
|
|
1639
|
+
settings.video.fps = FPS
|
|
1640
|
+
settings.video.fps.desc = 초당 프레임(예: 24, 25, 30); 모델이 반올림하거나 무시할 수 있습니다
|
|
1641
|
+
settings.video.generate_audio = 오디오 생성
|
|
1642
|
+
settings.video.generate_audio.desc = 모델이 지원하는 경우 합성 배경 오디오를 포함합니다
|
|
1643
|
+
settings.video.negative_prompt = 네거티브 프롬프트
|
|
1644
|
+
settings.video.negative_prompt.desc = 출력에서 피할 단어/구(콤마로 구분)
|
|
1645
|
+
settings.video.prompt_model = 프롬프트 향상 모델
|
|
1646
|
+
settings.video.prompt_model.desc = 비디오 생성 전에 프롬프트를 다듬는 데 사용할 LLM(비디오 모델 아님)
|
|
1647
|
+
settings.video.resolution = 비디오 해상도
|
|
1648
|
+
settings.video.resolution.desc = 목표 출력 해상도(예: 720p, 1080p); 선택한 모델에 따라 사용 가능 여부가 달라집니다
|
|
1649
|
+
settings.video.seed = 시드(Seed)
|
|
1650
|
+
settings.video.seed.desc = 재현 가능한 결과를 위한 선택적 랜덤 시드; 비워두면 랜덤
|
|
1651
|
+
settings.vision.capture.auto = 자동 캡처
|
|
1652
|
+
settings.vision.capture.enabled = 카메라
|
|
1653
|
+
settings.vision.capture.height = 캡처 높이(픽셀)
|
|
1654
|
+
settings.vision.capture.idx = 카메라 장치
|
|
1655
|
+
settings.vision.capture.idx.desc = 실시간 비디오 캡처에 사용할 카메라 장치를 선택하세요
|
|
1656
|
+
settings.vision.capture.quality = 캡처 품질(%)
|
|
1657
|
+
settings.vision.capture.width = 캡처 너비(픽셀)
|
|
1658
|
+
settings.zero.limit.desc = 0으로 설정하면 제한이 비활성화됩니다.
|
|
1659
|
+
settings.zoom = 채팅 출력 창 확대/축소
|
|
1660
|
+
speech.enable = 말하기
|
|
1661
|
+
speech.listening = 지금 말하세요...
|
|
1662
|
+
status.agent.reasoning = 잠시만 기다려 주세요... 추론 중...
|
|
1663
|
+
status.assistant.deleted = 어시스턴트가 삭제되었습니다
|
|
1664
|
+
status.assistant.saved = 어시스턴트가 업데이트되었습니다
|
|
1665
|
+
status.audio.start = 오디오 생성 중... 잠시만 기다려 주세요...
|
|
1666
|
+
status.audio.stopped = 오디오 재생이 중지되었습니다.
|
|
1667
|
+
status.audio.too_short = 오디오 녹음이 너무 짧습니다. 다시 시도하세요.
|
|
1668
|
+
status.cmd.wait = 명령 실행 중... 잠시만 기다려 주세요...
|
|
1669
|
+
status.deleted = 삭제됨
|
|
1670
|
+
status.error = 이런... 오류가 발생했습니다 :(
|
|
1671
|
+
status.evaluating = 잠시만 기다려 주세요... 평가 중...
|
|
1672
|
+
status.finished = 완료.
|
|
1673
|
+
status.img.generated = 이미지가 생성되었습니다.
|
|
1674
|
+
status.img.saved = 이미지가 저장되었습니다.
|
|
1675
|
+
status.loading = 로딩 중... 잠시만 기다려 주세요
|
|
1676
|
+
status.preset.cleared = 프리셋이 지워졌습니다.
|
|
1677
|
+
status.preset.deleted = 프리셋이 삭제되었습니다.
|
|
1678
|
+
status.preset.duplicated = 프리셋이 복제되었습니다.
|
|
1679
|
+
status.preset.empty_id = 경고: 프리셋 ID(파일명)가 비어 있습니다! 중단합니다...
|
|
1680
|
+
status.preset.saved = 프리셋이 저장되었습니다.
|
|
1681
|
+
status.reloading = 다시 불러오는 중... 잠시만 기다려 주세요
|
|
1682
|
+
status.reloading.profile.begin = 컴포넌트 다시 불러오는 중... 잠시만 기다려 주세요...
|
|
1683
|
+
status.reloading.profile.end = [확인] 컴포넌트를 성공적으로 다시 불러왔습니다.
|
|
1684
|
+
status.saved = 저장됨
|
|
1685
|
+
status.sending = 잠시만 기다려 주세요...
|
|
1686
|
+
status.started = 준비됨
|
|
1687
|
+
status.starting = 시작 중...
|
|
1688
|
+
status.stopped = 중지됨.
|
|
1689
|
+
status.tokens = 토큰
|
|
1690
|
+
status.uploaded = 파일이 업로드되었습니다
|
|
1691
|
+
status.uploading = 파일 업로드 중...
|
|
1692
|
+
tab.close_all.confirm = 모든 탭을 닫을까요?
|
|
1693
|
+
text.context_menu.audio.read = 읽기(음성 합성)
|
|
1694
|
+
text.context_menu.copy_to = 다음으로 복사...
|
|
1695
|
+
text.context_menu.copy_to.calendar = 캘린더
|
|
1696
|
+
text.context_menu.copy_to.input = 입력
|
|
1697
|
+
text.context_menu.copy_to.notepad = 메모장
|
|
1698
|
+
text.context_menu.copy_to.python.code = 파이썬 인터프리터(코드/기록)
|
|
1699
|
+
text.context_menu.copy_to.python.input = 파이썬 인터프리터(입력)
|
|
1700
|
+
text.context_menu.copy_to.translator_left = 번역기(왼쪽)
|
|
1701
|
+
text.context_menu.copy_to.translator_right = 번역기(오른쪽)
|
|
1702
|
+
text.context_menu.find = 찾기...
|
|
1703
|
+
theme.dark = 다크
|
|
1704
|
+
theme.light = 라이트
|
|
1705
|
+
tip.input.attachments = 여기에서 전송할 메시지에 첨부를 추가할 수 있습니다. 텍스트 파일, 코드 파일, PDF, 문서, 스프레드시트 등 다양한 파일을 보낼 수 있으며, 대화의 추가 컨텍스트로 사용됩니다. 분석을 위해 이미지 또는 카메라로 촬영한 사진도 보낼 수 있습니다.
|
|
1706
|
+
tip.input.attachments.ctx = 아래는 위의 전체 토론에 대한 추가 컨텍스트로 사용할 수 있는 업로드 및 인덱싱된 첨부 목록입니다. 옵션: 전체 컨텍스트 - 첨부의 전체 내용을 입력 프롬프트에 첨부; RAG - 인덱싱된 첨부를 질의하여 추가 컨텍스트를 가져옴; 요약 - 추가된 내용을 요약하여 프롬프트에 첨부; 끔 - 추가 컨텍스트 비활성화. **경고:** 전체 컨텍스트 모드는 첨부의 원문이 입력 프롬프트에 붙기 때문에 많은 토큰을 소비할 수 있습니다!
|
|
1707
|
+
tip.input.attachments.uploaded = 어시스턴트 모드에서 서버에 업로드된 파일 목록입니다. 이 파일들은 로컬 컴퓨터가 아니라 원격 서버에 있으므로, 모델이 원격 환경에서 제공되는 도구를 사용해 파일을 활용하고 분석할 수 있습니다.
|
|
1708
|
+
tip.output.tab.calendar = 캘린더를 사용하면 특정 날짜의 대화로 돌아갈 수 있습니다. 캘린더에서 날짜를 클릭하면 해당 날짜로 채팅 기록 표시가 제한됩니다. 또한 일자 메모를 만들고 다채로운 라벨을 지정할 수 있습니다.
|
|
1709
|
+
tip.output.tab.draw = 그리기 도구로 빠르게 스케치하거나 카메라에서 이미지를 캡처한 뒤, 비전 모드에서 AI에 분석을 요청할 수 있습니다. 여기에서 카메라로 이미지를 캡처하거나 디스크에서 이미지를 열 수 있습니다. 이미지를 사용하면 전송되는 메시지에 첨부로 포함됩니다.
|
|
1710
|
+
tip.output.tab.files = 이 작업 파일 디렉터리는 디스크에 있습니다. 여기의 파일은 AI가 접근할 수 있습니다. AI는 이 디렉터리에서 파일을 읽고/쓰고, 코드를 실행할 수 있습니다. 시스템에서 이 디렉터리를 로컬로 열고 파일을 넣을 수 있습니다. 또한 LlamaIndex로 파일을 인덱싱하여 추가 지식 소스로 사용할 수 있습니다. 다중 선택은 CTRL/SHIFT를 사용하세요.
|
|
1711
|
+
tip.output.tab.notepad = 메모장은 메모와 정보 저장을 위한 도구로 사용할 수 있습니다. 여기에서 텍스트를 보관하고, 채팅 창에서 텍스트를 복사할 수 있으며, 모든 정보는 자동으로 저장됩니다. 새 탭을 만들어 더 많은 메모장을 생성할 수 있습니다.
|
|
1712
|
+
tip.tokens.ctx = 컨텍스트(메모리): 사용 중/전체 - 토큰
|
|
1713
|
+
tip.tokens.input = 토큰: 입력 프롬프트 + 시스템 프롬프트 + 컨텍스트 + 추가 + 첨부 = 합계/최대
|
|
1714
|
+
tip.toolbox.assistants = 어시스턴트 목록에는 원격 서버에서 생성 및 동작 중인 어시스턴트가 표시됩니다. 모든 변경 사항은 원격 어시스턴트와 동기화됩니다.
|
|
1715
|
+
tip.toolbox.ctx = 필요한 만큼 대화 컨텍스트를 생성할 수 있으며, 언제든 돌아갈 수 있습니다.
|
|
1716
|
+
tip.toolbox.indexes = 대화와 파일을 인덱싱하면 사용자 데이터와 대화 기록으로 사용 가능한 지식을 확장할 수 있습니다.
|
|
1717
|
+
tip.toolbox.mode = 작업 모드와 모델을 실시간으로 변경할 수 있습니다.
|
|
1718
|
+
tip.toolbox.presets = 시스템 프롬프트 등 다양한 설정 조합을 프리셋으로 만들어 빠르게 전환할 수 있습니다.
|
|
1719
|
+
tip.toolbox.prompt = 현재 시스템 프롬프트는 실시간으로 수정할 수 있습니다. 플러그인 도구를 활성화하려면 "+ 도구" 옵션을 켜세요.
|
|
1720
|
+
toolbox.agent.auto_stop.label = 자동 중지
|
|
1721
|
+
toolbox.agent.continue.label = 항상 계속...
|
|
1722
|
+
toolbox.agent.iterations.label = 최대 실행 단계(반복, 0 = 무한)
|
|
1723
|
+
toolbox.agent.llama.loop.enabled.label = 루프
|
|
1724
|
+
toolbox.agent.llama.loop.label = 루프/평가(점수까지, 0% = 무한)
|
|
1725
|
+
toolbox.agent.llama.loop.mode.complete = 최소 완료율(%)
|
|
1726
|
+
toolbox.agent.llama.loop.mode.score = 최소 점수(%)
|
|
1727
|
+
toolbox.agent.llama.loop.mode.tooltip = 작업 완료도 또는 결과 정확도 평가
|
|
1728
|
+
toolbox.agent.llama.loop.score.tooltip = 종료에 필요한 점수, 0% = 무한 루프
|
|
1729
|
+
toolbox.agent.preset.placeholder = 시스템 프롬프트는 에이전트 프리셋에서 에이전트별로 정의됩니다
|
|
1730
|
+
toolbox.agents.label = 에이전트
|
|
1731
|
+
toolbox.assistants.label = 어시스턴트
|
|
1732
|
+
toolbox.env.label = 환경
|
|
1733
|
+
toolbox.experts.label = 전문가
|
|
1734
|
+
toolbox.img_variants.label = 생성할 이미지 변형 개수
|
|
1735
|
+
toolbox.indexes.label = 인덱스
|
|
1736
|
+
toolbox.llama_index.label = LlamaIndex
|
|
1737
|
+
toolbox.llama_index.mode.chat = 채팅
|
|
1738
|
+
toolbox.llama_index.mode.label = 모드
|
|
1739
|
+
toolbox.llama_index.mode.query = 인덱스만 질의
|
|
1740
|
+
toolbox.llama_index.mode.retrieval = 검색만
|
|
1741
|
+
toolbox.mode.label = 모드
|
|
1742
|
+
toolbox.model.label = 모델
|
|
1743
|
+
toolbox.name.ai = AI 이름
|
|
1744
|
+
toolbox.name.user = 사용자 이름
|
|
1745
|
+
toolbox.presets.label = 프리셋
|
|
1746
|
+
toolbox.prompt = 시스템 프롬프트
|
|
1747
|
+
toolbox.remote_tools.label = 원격 도구(OpenAI 모델 전용)
|
|
1748
|
+
toolbox.temperature.label = 온도(Temperature)
|
|
1749
|
+
tool.html_canvas.menu.file.clear = 지우기
|
|
1750
|
+
tool.html_canvas.menu.file.open = 열기
|
|
1751
|
+
tool.html_canvas.menu.file.reload = 다시 불러오기
|
|
1752
|
+
tool.html_canvas.menu.file.save_as = 다른 이름으로 저장...
|
|
1753
|
+
tool.indexer = 인덱서...
|
|
1754
|
+
tool.indexer.alert.no_files = 선택된 파일 또는 디렉터리가 없습니다!
|
|
1755
|
+
tool.indexer.alert.no_idx = 선택된 인덱스가 없습니다!
|
|
1756
|
+
tool.indexer.alert.no_loader = 선택된 로더가 없습니다!
|
|
1757
|
+
tool.indexer.confirm.idx = 인덱싱을 실행할까요?
|
|
1758
|
+
tool.indexer.confirm.remove = 인덱스에서 항목을 제거할까요?
|
|
1759
|
+
tool.indexer.db.copy = 값을 클립보드에 복사
|
|
1760
|
+
tool.indexer.db.remove = 항목 삭제
|
|
1761
|
+
tool.indexer.idx = 인덱스
|
|
1762
|
+
tool.indexer.idx.btn.add = 인덱스에 추가
|
|
1763
|
+
tool.indexer.loaders = 사용 가능한 데이터 로더
|
|
1764
|
+
tool.indexer.menu.config.settings = 설정
|
|
1765
|
+
tool.indexer.menu.file.clear_log = 로그 지우기
|
|
1766
|
+
tool.indexer.menu.file.remove_idx = 인덱스 제거
|
|
1767
|
+
tool.indexer.option.clear = 인덱싱 후 파일 목록 지우기
|
|
1768
|
+
tool.indexer.option.recursive = 재귀(하위 디렉터리 포함)
|
|
1769
|
+
tool.indexer.option.replace = 인덱스에 기존 문서 버전이 있으면 이전 버전을 제거
|
|
1770
|
+
tool.indexer.status = 출력 로그(LlamaIndex):
|
|
1771
|
+
tool.indexer.tab.browser = 인덱스 탐색
|
|
1772
|
+
tool.indexer.tab.browse.tip = 현재 인덱싱된 요소를 탐색하거나 제거할 수 있습니다(데이터베이스 매핑이 표시됨).
|
|
1773
|
+
tool.indexer.tab.ctx = 컨텍스트
|
|
1774
|
+
tool.indexer.tab.ctx.auto_enabled = 자동 인덱싱 활성화됨
|
|
1775
|
+
tool.indexer.tab.ctx.auto.no = 아니요
|
|
1776
|
+
tool.indexer.tab.ctx.auto.yes = 예
|
|
1777
|
+
tool.indexer.tab.ctx.idx.tip = 클릭하여 컨텍스트 DB를 일괄 재인덱싱:
|
|
1778
|
+
tool.indexer.tab.ctx.last_auto = 마지막 컨텍스트 DB 인덱스 일괄 업데이트
|
|
1779
|
+
tool.indexer.tab.ctx.last_meta_id = 마지막 컨텍스트 메타 ID
|
|
1780
|
+
tool.indexer.tab.ctx.last_meta_ts = 마지막 컨텍스트 메타 타임스탬프
|
|
1781
|
+
tool.indexer.tab.ctx.tip = 여기에서 전체 컨텍스트 DB를 일괄 재인덱싱하거나 마지막 배치 이후의 데이터만 업데이트할 수 있습니다.
|
|
1782
|
+
tool.indexer.tab.files = 파일
|
|
1783
|
+
tool.indexer.tab.files.path.dir = 디렉터리 선택:
|
|
1784
|
+
tool.indexer.tab.files.path.files = 파일 선택:
|
|
1785
|
+
tool.indexer.tab.files.tip = 선택한 인덱스에 파일을 임베딩할 파일 또는 디렉터리를 선택하세요. 데이터 로더는 파일 확장자에 따라 자동 선택됩니다.
|
|
1786
|
+
tool.indexer.tab.web = 웹
|
|
1787
|
+
tool.indexer.tab.web.cfg = 구성(전역 설정) - 설정 -> LlamaIndex -> 데이터 로더
|
|
1788
|
+
tool.indexer.tab.web.help = 도움말
|
|
1789
|
+
tool.indexer.tab.web.loader = 데이터 타입
|
|
1790
|
+
tool.indexer.tab.web.source = 데이터 소스
|
|
1791
|
+
tool.indexer.tab.web.tip = 데이터 로더를 선택하고 로더 매개변수를 정의하여 웹의 외부 데이터를 임베딩하세요.
|
|
1792
|
+
tool.indexer.title = 인덱서
|
|
1793
|
+
tool.web_browser.security.footer = 보안 안내: 사용자의 보호를 위해 내장 브라우저로 민감하거나 중요한 작업을 하지 마세요. 기본적인 사용만을 목적으로 합니다.
|
|
1794
|
+
translator.btn.left = 번역 >>
|
|
1795
|
+
translator.btn.right = << 번역
|
|
1796
|
+
translator.clear.confirm = 번역기 출력(양쪽)을 지울까요?
|
|
1797
|
+
translator.clear.left.confirm = 번역기 출력(왼쪽)을 지울까요?
|
|
1798
|
+
translator.clear.right.confirm = 번역기 출력(오른쪽)을 지울까요?
|
|
1799
|
+
translator.label.lang = 언어
|
|
1800
|
+
translator.label.model = 모델
|
|
1801
|
+
translator.search.auto = --- 자동 감지 ---
|
|
1802
|
+
translator.search.placeholder = 언어 검색...
|
|
1803
|
+
translators.menu.file.clear = 지우기
|
|
1804
|
+
untitled = 제목 없음
|
|
1805
|
+
update.current_version = 현재 버전
|
|
1806
|
+
update.download = 다운로드로 이동
|
|
1807
|
+
update.info = 새 버전이 있습니다
|
|
1808
|
+
update.info.none = 현재 최신 버전입니다
|
|
1809
|
+
update.info.upgrade = 다음으로 업그레이드할 수 있습니다:
|
|
1810
|
+
update.new_version = 최신 버전
|
|
1811
|
+
updater.check.launch = 실행 시 확인
|
|
1812
|
+
update.released = 빌드
|
|
1813
|
+
update.snap = Snap Store로 이동
|
|
1814
|
+
update.title = 업데이트 확인
|
|
1815
|
+
video.remix = 리믹스/확장
|
|
1816
|
+
video.remix.tooltip = 컨텍스트의 이전 비디오를 기반으로 리믹스/확장을 활성화합니다(Sora2, Veo3.1).\n활성화 시 새로 만들기 대신 이전 비디오를 참조로 사용합니다.
|
|
1817
|
+
vid.status.downloading = 비디오 다운로드 중... 잠시만 기다려 주세요...
|
|
1818
|
+
vid.status.generating = 다음 프롬프트에서 비디오 생성 중:
|
|
1819
|
+
vid.status.prompt.error = 프롬프트 향상 오류가 발생했습니다
|
|
1820
|
+
vid.status.prompt.wait = 프롬프트 준비 중... 잠시만 기다려 주세요...
|
|
1821
|
+
vision.capture.auto = 자동 캡처
|
|
1822
|
+
vision.capture.auto.click = 자동 캡처가 활성화되었습니다!
|
|
1823
|
+
vision.capture.auto.label = 자동 캡처 활성화됨
|
|
1824
|
+
vision.capture.auto.tooltip = 활성화하면 입력을 전송할 때마다 이미지가 자동으로 캡처됩니다
|
|
1825
|
+
vision.capture.enable = 카메라
|
|
1826
|
+
vision.capture.enable.tooltip = 카메라 이미지 캡처 활성화/비활성화
|
|
1827
|
+
vision.capture.error = 캡처 오류(카메라 없음?)
|
|
1828
|
+
vision.capture.label = 캡처하려면 이미지를 클릭
|
|
1829
|
+
vision.capture.manual.captured.error = 카메라 캡처 오류!
|
|
1830
|
+
vision.capture.manual.captured.success = 카메라에서 이미지 캡처됨:
|
|
1831
|
+
vision.capture.name.prefix = 카메라 캡처:
|
|
1832
|
+
vision.capture.options.title = 비디오 캡처
|
|
1833
|
+
vision.checkbox.tooltip = 체크되어 있으면 비전 모델이 활성화됩니다. 이미지 업로드 시 자동으로 활성화됩니다. 실시간으로 비활성화할 수 있습니다.
|