This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Intro] | |
[ska chorus] | |
[Verse 1] | |
Решил структуру поправить — | |
Фабрики везде расставить, | |
Модули, схемы, давай всё чинить, | |
Но пришлось весь движ сломать и хранить. | |
Комменты стерты, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"objects":[{"bbox_2d":[144,97,241,120],"label":"Number and Title","text":"8.4 Область действия переменных","confidence":null},{"bbox_2d":[397,98,418,119],"label":"Page Number","text":"38","confidence":null},{"bbox_2d":[145,123,318,146],"label":"Number and Title","text":"8.5 Описание алгоритмов переменных и программ","confidence":null},{"bbox_2d":[397,125,418,146],"label":"Page Number","text":"39","confidence":null},{"bbox_2d":[146,149,395,170],"label":"Number and Title","text":"9 ИСПОЛЬЗОВАНИЕ МОДУЛЕЙ В ТУРБО-ПАСКАЛЕ МОДУЛЬ СRT","confidence":null},{"bbox_2d":[445,149,466,169],"label":"Page Number","text":"44","confidence":null},{"bbox_2d":[165,176,269,194],"label":"Subtitle","text":"9. 1 Общие сведения","confidence":null},{"bbox_2d":[445,176,466,194],"label":"Page Number","text":"44","confidence":null},{"bbox_2d":[165,198,265,215],"label":"Subtitle","text":"9. 2 Работа с экраном дисплея","confidence":null},{"bbox_2d":[217,197,437,216],"label":"Text","text":"в текстовом режиме","confidence":null},{"bbox_2d":[ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pasha@gpu01:~/containers/llama.cpp$ ./build/bin/llama-server -hf unsloth/Qwen3-1.7B-GGUF:Q4_K_M | |
WARNING: Small BAR detected for device 0000:06:00.0 | |
WARNING: Small BAR detected for device 0000:84:00.0 | |
WARNING: Small BAR detected for device 0000:06:00.0 | |
WARNING: Small BAR detected for device 0000:84:00.0 | |
[New LWP 7785] | |
[New LWP 7784] | |
[New LWP 7783] | |
[New LWP 7782] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x-shared-logs: &shared-logs | |
logging: | |
driver: "json-file" | |
options: | |
max-size: "10k" | |
services: | |
ollama: | |
image: ollama/ollama:0.9.2 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.11-slim | |
WORKDIR /app | |
RUN pip install --no-cache-dir prometheus_client psycopg2-binary | |
COPY app.py . | |
EXPOSE 9090 | |
CMD ["python", "app.py"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x-shared-logs: &shared-logs | |
logging: | |
driver: "json-file" | |
options: | |
max-size: "10k" | |
services: | |
ollama: | |
image: ollama/ollama:0.6.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are Manus, an AI agent created by the Manus team. | |
You excel at the following tasks: | |
1. Information gathering, fact-checking, and documentation | |
2. Data processing, analysis, and visualization | |
3. Writing multi-chapter articles and in-depth research reports | |
4. Creating websites, applications, and tools | |
5. Using programming to solve various problems beyond development | |
6. Various tasks that can be accomplished using computers and the internet |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
from openai import OpenAI | |
client = OpenAI(api_key="~", base_url="http://gpu02:11434/v1") | |
system_prompt = """\ | |
The user will provide some examination text. | |
Please parse the "question" and "answer" and output them in JSON format. | |
OUTPUT JSON SCHEMA: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import math | |
import srt | |
import fire | |
import requests | |
import subprocess | |
from tqdm import tqdm | |
from datetime import timedelta |
NewerOlder