Skip to content

Instantly share code, notes, and snippets.

@Natkarock
Natkarock / agent.py
Last active October 17, 2025 20:39
Ai Challenge Day 3
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import dataclasses, json, os, sys, time, threading
from typing import Optional
from urllib import request, error
API_URL = "https://api.openai.com/v1/responses"
MODEL = "gpt-4o-2024-08-06"
@Natkarock
Natkarock / agent.py
Created October 16, 2025 15:26
Ai Challenge Two
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import dataclasses, json, os, sys, threading, time
from typing import Optional
from urllib import request, error
API_URL = "https://api.openai.com/v1/responses"
MODEL = "gpt-4o-2024-08-06"
@Natkarock
Natkarock / agent.sh
Created October 15, 2025 15:25
Ai Challenge One
#!/usr/bin/env bash
set -euo pipefail
API_URL="https://api.openai.com/v1/responses"
MODEL="gpt-4o-mini"
: "${OPENAI_API_KEY:?Переменная OPENAI_API_KEY не установлена}"
# История как JSON-массив сообщений
HISTORY='[{"role":"system","content":"Ты — дружелюбный и лаконичный помощник."}]'