repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/datasets.py
null
null
null
null
null
null
Python
2026-05-04T02:01:34.953014
import abc import logging import os import tempfile import warnings from typing import Any, Dict, List, Optional, Sequence import datasets as hf_datasets import jinja2 import numpy as np import streaming as mds import transformers from torch.utils import data from ultravox.data import data_sample from ultravox.data i...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/datasets_test.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.083847
from typing import Optional from unittest.mock import patch import datasets as hf_datasets import numpy as np import pytest import torch from torch.utils import data from transformers.feature_extraction_utils import BatchFeature from ultravox.data import data_sample from ultravox.data import datasets from ultravox.da...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/registry.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.171813
import dataclasses import logging from typing import Dict, List, Optional from ultravox.data import datasets from ultravox.data import types from ultravox.data.configs import ami from ultravox.data.configs import audiobench from ultravox.data.configs import bigbenchaudio from ultravox.data.configs import boolq from ul...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/text_proc.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.262487
import os import sys from typing import Dict, List # Temporary fix for an issue where importing NLTK breaks PyTorch multiprocessing on MacOS. # For more details, see: https://github.com/nltk/nltk/issues/2949 sys.modules["tkinter"] = None # type: ignore import nltk # needed for truecase # noqa: E402 import truecase ...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/text_proc_test.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.282259
import pytest from ultravox.data import text_proc @pytest.mark.parametrize( ("text", "expected"), [ ( "I SEE LOTS OF PEOPLE HAVE DRONES HERE <COMMA> MAVERICK AS WELL <PERIOD> ", "I see lots of people have drones here, maverick as well.", ), ], ) def test_format_as...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/data/types.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.323509
import dataclasses import enum import json import logging from typing import Any, Dict, List, Optional from simple_parsing import helpers AUDIO_PLACEHOLDER = "<|audio|>" TRANSLATION_USER_TEMPLATE = f"Please translate the text to {{{{target}}}}. Your response should only include the {{{{target}}}} translation, withou...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/eval_metrics.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.436464
from concurrent.futures import ThreadPoolExecutor from functools import partial from typing import Any, Callable, Dict, List from ultravox.data import types from ultravox.evaluation import eval_types from ultravox.evaluation import gpt_eval_audiobench from ultravox.evaluation import gpt_eval_bigbench from ultravox.eva...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/eval.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.480273
import dataclasses import datetime import json import logging import math import os from pathlib import Path from typing import Any, Dict, Generator, List, Optional, Tuple, Union import simple_parsing import torch import torch.distributed as dist import wandb from tqdm import tqdm from ultravox import data from ultra...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/eval_test.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.504818
from ultravox.evaluation import eval def test_eval(): eval.main(["--config_path", "training/configs/test_eval.yaml"])
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/eval_types.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.546159
import dataclasses from typing import Any, Dict, List, Optional, Union import dataclasses_json @dataclasses.dataclass class Sample(dataclasses_json.DataClassJsonMixin): index: int # index of the sample in the dataset, used for preserving order after ddp all_gather question: str transcript: str gener...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/gpt_eval.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.679084
import dataclasses import re from typing import Optional import jinja2 import openai from ultravox.evaluation import eval_types class GPTBasedEvaluator: """ Encapsulates GPT-based evaluation logic. This class holds a single client instance, runs inference as needed, and provides different evaluation ...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/gpt_eval_audiobench.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.773222
from ultravox.evaluation import eval_types from ultravox.evaluation import gpt_eval AUDIOBENCH_SYSTEM_PROMPT = """ You are a helpful assistant. """ AUDIOBENCH_USER_PROMPT = """\ [Reference Answer] {{ expected_answer }} [Model Answer] {{ generated_answer}} [Question] {{ transcript }} [Task] Rate the model's answer ...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/gpt_eval_bigbench.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.852567
from ultravox.evaluation import eval_types from ultravox.evaluation import gpt_eval BIGBENCH_SYSTEM_PROMPT = """ Assess whether the following CANDIDATE ANSWER is CORRECT or INCORRECT. For the CANDIDATE ANSWER to be correct, it must be consistent with the OFFICIAL ANSWER. If the CANDIDATE ANSWER contradicts itself, ass...
fixie-ai/ultravox
https://github.com/fixie-ai/ultravox
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
ultravox/evaluation/gpt_eval_boolq.py
null
null
null
null
null
null
Python
2026-05-04T02:01:35.885747
from ultravox.evaluation import eval_types from ultravox.evaluation import gpt_eval BOOLQ_SYSTEM_PROMPT = """ You are an expert evaluator of AI systems. Given a question with a known true/false answer, you will be rating the correctness of an AI model's answer to that same question. Based on the supplied question, ans...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/downloader.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.160476
"""the downloader module handles the downloading""" from multiprocessing.pool import ThreadPool from threading import Semaphore import urllib.request import io import ssl import math import exifread import json import time import hashlib import pyarrow as pa import traceback import fsspec from .logger import CappedCo...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/main.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.166102
"""Img2dataset""" from typing import List, Optional import fire import logging from .logger import LoggerProcess from .resizer import Resizer from .blurrer import BoundingBoxBlurrer from .writer import ( WebDatasetSampleWriter, FilesSampleWriter, ParquetSampleWriter, TFRecordSampleWriter, DummySamp...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/distributor.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.173247
"""distributor defines the distribution strategies for img2dataset""" from contextlib import contextmanager from multiprocessing import get_context from itertools import islice, chain from tqdm import tqdm def retrier(runf, failed_shards, max_shard_retry): # retry failed shards max_shard_retry times for i i...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
examples/simple_example.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.174419
from img2dataset import download import shutil import os if __name__ == "__main__": output_dir = os.path.abspath("bench") if os.path.exists(output_dir): shutil.rmtree(output_dir) download( processes_count=16, thread_count=32, url_list="../tests/test_files/test_10000.parque...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/reader.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.176555
"""Reader is module to read the url list and return shards""" from multiprocessing.pool import ThreadPool import math import fsspec import time import pyarrow.parquet as pq import pyarrow.csv as csv_pa import pyarrow.json as json_pa import pyarrow as pa import pandas as pd class Reader: """ The reader class ...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
examples/ray_example/ray_example.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.196981
import sys import time from collections import Counter import ray from img2dataset import download import argparse @ray.remote def main(args): download( processes_count=1, thread_count=32, retries=0, timeout=10, url_list=args.url_list, image_size=512, resi...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
examples/pyspark_example.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.206711
from img2dataset import download import shutil import os from pyspark.sql import SparkSession # pylint: disable=import-outside-toplevel output_dir = os.path.abspath("bench") if os.path.exists(output_dir): shutil.rmtree(output_dir) spark = ( SparkSession.builder.config("spark.driver.memory", "16G").master("l...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/blurrer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.215027
"""blurrer module to blur parts of the image""" import numpy as np import random import albumentations as A class BoundingBoxBlurrer: """blur images based on a bounding box. The bounding box used is assumed to have format [x_min, y_min, x_max, y_max] (with elements being floats in [0,1], relative to th...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/logger.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.244838
"""logging utils for the downloader""" import wandb import time from collections import Counter import fsspec import json import multiprocessing import queue import traceback class CappedCounter: """Maintain a counter with a capping to avoid memory issues""" def __init__(self, max_size=10**5): self....
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/writer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.777798
""""writer module handle writing the images to disk""" import json import os import fsspec import numpy as np import pyarrow as pa import pyarrow.parquet as pq import webdataset as wds class BufferedParquetWriter: """Write samples to parquet files incrementally with a buffer""" def __init__(self, output_fi...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
img2dataset/resizer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.792037
"""resizer module handle image resizing""" import albumentations as A import cv2 import numpy as np from enum import Enum import imghdr # pylint: disable=deprecated-module import os _INTER_STR_TO_CV2 = { "nearest": cv2.INTER_NEAREST, "linear": cv2.INTER_LINEAR, "bilinear": cv2.INTER_LINEAR, "cubic": ...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
setup.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.792542
from setuptools import setup, find_packages from pathlib import Path import os if __name__ == "__main__": with Path(Path(__file__).parent, "README.md").open(encoding="utf-8") as file: long_description = file.read() def _read_reqs(relpath): fullpath = os.path.join(os.path.dirname(__file__), rel...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/regenerate_blur_references.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.828876
#!/usr/bin/env python3 """Script to regenerate reference images for blur+resize tests""" import os import cv2 import tempfile import shutil from img2dataset.main import download def regenerate_reference_images(): """Regenerate all reference images for blur+resize tests""" current_folder = os.path.dirname(__f...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/conftest.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.829364
import pytest import urllib.request import subprocess import sys import time import sys def spawn_and_wait_server(): port = f"123{sys.version_info.minor}" process = subprocess.Popen( [ sys.executable, "-m", "uvicorn", "tests.http_server:app", ...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_downloader.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.830327
import shutil import pytest import json from fixtures import setup_fixtures from img2dataset.resizer import Resizer from img2dataset.writer import FilesSampleWriter from img2dataset.downloader import Downloader from unittest.mock import patch, MagicMock import ssl import urllib.error import os import pandas as pd @p...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/fixtures.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.841807
import pandas as pd import cv2 import glob import random import os import sys import gzip def setup_fixtures(count=5, disallowed=0): test_list = [] current_folder = os.path.dirname(__file__) test_folder = current_folder + "/" + "resize_test_image" port = f"123{sys.version_info.minor}" image_paths ...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_blurrer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.866091
"""Tests for the bounding box blurring module.""" from img2dataset.blurrer import BoundingBoxBlurrer import os import pytest import cv2 import numpy as np import random def test_blurrer(): """Test whether blurrer works properly.""" # Set fixed seed for deterministic results np.random.seed(42) random....
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/http_server.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.866889
import os from fastapi import FastAPI, Response from fastapi.staticfiles import StaticFiles class StaticFilesXRobotsTagHeader(StaticFiles): async def get_response(self, *args, **kwargs) -> Response: response = await super().get_response(*args, **kwargs) response.headers["X-Robots-Tag"] = "noai, n...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_main.py
null
null
null
null
null
null
Python
2026-05-04T02:01:38.877593
from img2dataset import download import os import shutil import pytest import glob import numpy as np import pandas as pd import cv2 import time import tarfile from fixtures import ( get_all_files, check_image_size, generate_input_file, setup_fixtures, ) testdata = [ ("border", False, False), (...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_writer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:39.393192
from img2dataset.writer import ( FilesSampleWriter, WebDatasetSampleWriter, ParquetSampleWriter, DummySampleWriter, TFRecordSampleWriter, ) import os import glob import pytest import tarfile import pandas as pd import pyarrow as pa @pytest.mark.parametrize("writer_type", ["files", "webdataset", "...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_resizer.py
null
null
null
null
null
null
Python
2026-05-04T02:01:39.393842
from img2dataset.resizer import Resizer import os import glob import pytest from fixtures import check_one_image_size import io import cv2 import numpy as np testdata = [ ("border", False, False), ("border", False, True), ("border", True, False), ("keep_ratio", False, False), ("keep_ratio", True, F...
rom1504/img2dataset
https://github.com/rom1504/img2dataset
null
null
null
null
4,412
null
null
mit
null
null
null
null
null
null
null
tests/test_reader.py
null
null
null
null
null
null
Python
2026-05-04T02:01:39.394300
from img2dataset.reader import Reader import os from fixtures import generate_input_file, setup_fixtures import pytest import math import time import gc import psutil import pandas as pd def current_memory_usage(): return psutil.Process().memory_info().rss / 1024 / 1024 @pytest.mark.parametrize( "input_form...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/agents/preprocess_manager.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.160942
import logging import threading import asyncio from typing import Dict, Set from threading import Event logger = logging.getLogger("preprocess_manager") class PreprocessTask: def __init__(self, task_id: str, conversation_id: int): self.task_id = task_id self.conversation_id = conversation_id ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
.claude/skills/skill-creator/scripts/quick_validate.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.161864
#!/usr/bin/env python3 """ Quick validation script for skills - minimal version """ import sys import os import re import yaml from pathlib import Path def validate_skill(skill_path): """Basic validation of a skill""" skill_path = Path(skill_path) # Check SKILL.md exists skill_md = skill_path / 'SKIL...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/agents/skill_creation_agent.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.190753
"""Skill creation agent module for interactive skill generation.""" import logging import threading from typing import List from nexent.core.agents.agent_model import AgentConfig, AgentRunInfo, ModelConfig, ToolConfig from nexent.core.agents.run_agent import agent_run_thread from nexent.core.utils.observer import Mes...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/agents/agent_run_manager.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.285219
import logging import threading from typing import Dict, Union from nexent.core.agents.agent_model import AgentRunInfo from nexent.core.agents.agent_context import ContextManager, ContextManagerConfig logger = logging.getLogger("agent_run_manager") class AgentRunManager: _instance = None _lock =...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
.claude/skills/skill-creator/scripts/init_skill.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.286280
#!/usr/bin/env python3 """ Skill Initializer - Creates a new skill from template Usage: init_skill.py <skill-name> --path <path> Examples: init_skill.py my-new-skill --path skills/public init_skill.py my-api-helper --path skills/private init_skill.py custom-skill --path /custom/location """ import sy...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/a2a_server_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.739952
""" A2A Server internal management endpoints. These endpoints are for internal use only (user authentication required). They are NOT registered to any FastAPI app - only used by internal code. """ import logging from typing import Any, Dict, Optional from typing_extensions import Annotated from http import HTTPStatus...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/config_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.756624
import logging from apps.app_factory import create_app from apps.agent_app import agent_config_router as agent_router from apps.config_sync_app import router as config_sync_router from apps.datamate_app import router as datamate_router from apps.vectordatabase_app import router as vectordatabase_router from apps.dify_...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/app_factory.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.786010
""" FastAPI application factory with common configurations and exception handlers. """ import logging from fastapi import FastAPI, HTTPException from fastapi.middleware.cors import CORSMiddleware from fastapi.responses import JSONResponse from consts.exceptions import AppException logger = logging.getLogger(__name_...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/agent_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.797088
import logging from http import HTTPStatus from typing import Optional from fastapi import APIRouter, Body, Header, HTTPException, Request, Query from fastapi.encoders import jsonable_encoder from starlette.responses import JSONResponse from consts.model import AgentRequest, AgentInfoRequest, AgentIDRequest, Conversa...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/config_sync_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.852260
import logging from http import HTTPStatus from typing import Optional from fastapi import APIRouter, Header, Request, HTTPException from fastapi.responses import JSONResponse from consts.model import GlobalConfig from services.config_sync_service import save_config_impl, load_config_impl from utils.auth_utils import...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/data_process_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.868580
import logging from contextlib import asynccontextmanager from http import HTTPStatus from typing import Optional from fastapi import APIRouter, File, Form, Header, HTTPException, UploadFile from fastapi.responses import JSONResponse from consts.model import ( BatchTaskRequest, ConvertStateRequest, TaskRe...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/conversation_management_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:43.897194
import logging from http import HTTPStatus from typing import Any, Dict, Optional from fastapi import APIRouter, Header, HTTPException, Request from consts.model import ( ConversationRequest, ConversationResponse, GenerateTitleRequest, MessageIdRequest, OpinionRequest, RenameRequest, ) from se...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/datamate_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.333843
import logging from typing import Optional from fastapi import APIRouter, Header, HTTPException, Path from fastapi.responses import JSONResponse from fastapi import Body from pydantic import BaseModel from http import HTTPStatus from services.datamate_service import ( sync_datamate_knowledge_bases_and_create_reco...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/dify_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.354637
""" Dify App Layer FastAPI endpoints for Dify knowledge base operations. This module provides API endpoints to interact with Dify's datasets API, including fetching knowledge bases and transforming responses to a format compatible with the frontend. """ import logging from http import HTTPStatus from typing import Opt...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/file_management_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.429685
import logging import re import base64 from http import HTTPStatus from typing import Annotated, List, Optional from urllib.parse import urlparse, urlunparse, unquote, quote import httpx from fastapi import APIRouter, Body, File, Form, Header, HTTPException, Path as PathParam, Query, UploadFile from fastapi.responses ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/haotian_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.434819
""" Haotian App Layer FastAPI endpoints for Haotian external knowledge base operations. This module provides proxy APIs so the frontend does not call external services directly. """ import logging from http import HTTPStatus from typing import Optional, Dict from fastapi import APIRouter, Header, HTTPException, Body...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/group_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.446514
""" Group management API endpoints """ import logging from typing import Optional from fastapi import APIRouter, HTTPException, Header from http import HTTPStatus from starlette.responses import JSONResponse from consts.model import ( GroupCreateRequest, GroupUpdateRequest, GroupUserRequest, GroupListRequest,...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/idata_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.448134
""" iData App Layer FastAPI endpoints for iData knowledge space operations. This module provides API endpoints to interact with iData's API, including fetching knowledge spaces and transforming responses to a format compatible with the frontend. """ import logging from http import HTTPStatus from fastapi import APIRo...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/image_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.454816
import logging import base64 from urllib.parse import unquote from io import BytesIO from fastapi import APIRouter, HTTPException from fastapi.responses import StreamingResponse from http import HTTPStatus from services.image_service import proxy_image_impl # Create router router = APIRouter() # Configure logging l...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/invitation_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.905174
""" Invitation management API endpoints """ import logging from typing import Optional from fastapi import APIRouter, HTTPException, Header from http import HTTPStatus from starlette.responses import JSONResponse from consts.model import ( InvitationCreateRequest, InvitationUpdateRequest, InvitationListRequest ) ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/knowledge_summary_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:44.983486
import logging from typing import Optional from fastapi import APIRouter, Body, Depends, Header, HTTPException, Path, Query, Request from fastapi.responses import StreamingResponse from nexent.vector_database.base import VectorDatabaseCore from consts.model import ChangeSummaryRequest from services.vectordatabase_ser...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/mock_user_management_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.012244
import logging from datetime import datetime, timedelta from fastapi import APIRouter, Request, HTTPException from fastapi.responses import JSONResponse from http import HTTPStatus from consts.const import MOCK_USER, MOCK_SESSION from consts.exceptions import UnauthorizedError from consts.model import UserSignInReque...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/memory_config_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.013583
"""Memory configuration and CRUD API endpoints for the app layer. This module exposes HTTP endpoints under the `/memory` prefix. It follows the app-layer responsibilities: - Parse and validate HTTP inputs - Delegate business logic to the service layer - Convert unexpected exceptions to error JSON responses Routes: - ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/monitoring_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.026428
""" Model Monitoring API endpoints. Provides model performance metrics aggregated from model_monitoring_record_t. Uses an independent database connection pool to avoid impacting business operations. """ import logging from http import HTTPStatus from typing import Annotated, Optional from fastapi import APIRouter, H...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/northbound_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.035273
import logging from http import HTTPStatus from typing import Optional, Dict, Any from urllib.parse import urlparse import uuid import httpx from fastapi import APIRouter, Body, Header, Request, HTTPException, Query from fastapi.responses import JSONResponse, StreamingResponse from consts.exceptions import LimitExcee...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/model_managment_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.077201
"""FastAPI App layer for model management endpoints. This module exposes HTTP endpoints under the prefix "/model". It follows the App layer contract: - Parse and validate inputs using Pydantic models from `consts.model` and FastAPI parameters. - Delegate business logic to services and database layer; do not implement ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/northbound_base_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.476695
""" Northbound API with A2A support. This module combines northbound app with A2A server endpoints. """ import base64 import hashlib import json import logging from typing import Annotated, Any, Dict from http import HTTPStatus from fastapi import APIRouter, Depends, Header, HTTPException, Path, Query, Request from f...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/oauth_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.576859
import logging from fastapi import APIRouter, Header, HTTPException from fastapi.responses import JSONResponse, RedirectResponse from http import HTTPStatus from typing import Optional from consts.exceptions import OAuthLinkError, OAuthProviderError, UnauthorizedError from consts.oauth_providers import get_all_provid...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/prompt_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.588548
import logging from http import HTTPStatus from typing import Optional from fastapi import APIRouter, Header, HTTPException, Request from fastapi.responses import StreamingResponse from consts.model import GeneratePromptRequest from services.prompt_service import gen_system_prompt_streamable from utils.auth_utils impo...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/runtime_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.605231
import logging from apps.app_factory import create_app from apps.agent_app import agent_runtime_router as agent_router from apps.voice_app import voice_runtime_router as voice_router from apps.conversation_management_app import router as conversation_management_router from apps.memory_config_app import router as memor...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/remote_mcp_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.632872
import logging import json from typing import Optional from fastapi import APIRouter, Header, HTTPException, UploadFile, File, Form, Query, Request from fastapi.responses import JSONResponse, StreamingResponse from http import HTTPStatus from consts.const import NEXENT_MCP_DOCKER_IMAGE, ENABLE_UPLOAD_IMAGE from const...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/tenant_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.641922
""" Tenant management API endpoints """ import logging from typing import Optional from fastapi import APIRouter, HTTPException, Header, Body from http import HTTPStatus from starlette.responses import JSONResponse from consts.model import ( PaginationRequest, TenantCreateRequest, TenantUpdateRequest, ) f...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/skill_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:45.643153
"""Skill management HTTP endpoints.""" import logging from typing import Any, Dict, List, Optional from fastapi import APIRouter, HTTPException, Query, UploadFile, File, Form, Header from starlette.responses import JSONResponse, StreamingResponse from pydantic import BaseModel, Field from consts.const import APP_VER...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/tenant_config_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.026443
import logging from http import HTTPStatus from fastapi import APIRouter, HTTPException from fastapi.responses import JSONResponse from consts.const import DEPLOYMENT_VERSION, APP_VERSION logger = logging.getLogger("tenant_config_app") router = APIRouter(prefix="/tenant_config") @router.get("/deployment_version") ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/tool_config_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.141682
import logging from http import HTTPStatus from typing import Optional, Dict, Any from fastapi import APIRouter, Header, HTTPException, Body from fastapi.responses import JSONResponse from consts.exceptions import MCPConnectionError, NotFoundException from consts.model import ToolInstanceInfoRequest, ToolInstanceSear...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/user_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.166278
""" User management API endpoints """ import logging from typing import Optional from fastapi import APIRouter, HTTPException, Header from http import HTTPStatus from starlette.responses import JSONResponse from consts.model import ( UserListRequest, UserUpdateRequest ) from services.user_service import ( get...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/user_management_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.168216
import logging from dotenv import load_dotenv from fastapi import APIRouter, Header, Query, Request, HTTPException from fastapi.responses import JSONResponse from http import HTTPStatus from typing import Optional from supabase_auth.errors import AuthApiError, AuthWeakPasswordError from consts.model import UserSignI...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/voice_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.204674
import asyncio import logging from http import HTTPStatus from fastapi import APIRouter, WebSocket, HTTPException, Body, Query from fastapi.responses import JSONResponse from consts.exceptions import ( VoiceServiceException, STTConnectionException, TTSConnectionException, VoiceConfigException ) from c...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/vectordatabase_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.205781
import logging import json from http import HTTPStatus from typing import Any, Dict, List, Optional from fastapi import APIRouter, Body, Depends, Header, HTTPException, Path, Query from fastapi.responses import JSONResponse import re from consts.model import ChunkCreateRequest, ChunkUpdateRequest, HybridSearchRequest...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/config_service.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.247712
import uvicorn import logging import warnings from consts.const import APP_VERSION warnings.filterwarnings("ignore", category=UserWarning) from dotenv import load_dotenv load_dotenv() from apps.config_app import app from utils.logging_utils import configure_logging, configure_elasticsearch_logging configure_loggi...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/consts/a2a_models.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.714325
""" Pydantic models for A2A protocol. """ from typing import Any, Dict, List, Optional from pydantic import BaseModel, Field class A2AMessageContent(BaseModel): """A2A message content structure.""" type: str = Field(default="text", description="Content type: text, image, file, etc.") text: Optional[str] =...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/consts/const.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.741811
import os from enum import Enum from pathlib import Path from dotenv import load_dotenv # Load environment variables load_dotenv(override=True) # TODO: Analyze every variable if this is used # Test voice file path TEST_VOICE_PATH = os.path.join(os.path.dirname( os.path.dirname(__file__)), 'assets', 'test.wav') ...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/consts/error_code.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.765364
""" Error code definitions for the application. Format: XXYYZZ (6 digits, string) - XX: Module code (01-99, based on sidebar) 00: Common / 公共 - cross-module common errors 01: Chat / 开始问答 02: QuickConfig / 快速配置 03: AgentSpace / 智能体空间 04: AgentMarket / 智能体市场 05: AgentDev / 智能体开发 06: Knowledge...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/consts/error_message.py
null
null
null
null
null
null
Python
2026-05-04T02:01:46.827803
""" Error message mappings for error codes. This module provides default English error messages. Frontend should use i18n for localized messages. """ from .error_code import ErrorCode class ErrorMessage: """Error code to message mapping.""" _MESSAGES = { # ==================== 00 Common / 公共 ======...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/apps/a2a_client_app.py
null
null
null
null
null
null
Python
2026-05-04T02:01:47.003255
""" A2A Client API endpoints. These endpoints allow users to discover and manage external A2A agents. Used internally for configuring A2A sub-agents. """ import logging from typing import Annotated, List, Optional from http import HTTPStatus from fastapi import APIRouter, Depends, Header, HTTPException, Query, Reques...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
backend/agents/create_agent_info.py
null
null
null
null
null
null
Python
2026-05-04T02:01:47.109681
import threading import logging from typing import List, Optional from urllib.parse import urljoin from datetime import datetime from jinja2 import Template, StrictUndefined from nexent.core.utils.observer import MessageObserver from nexent.core.agents.agent_model import AgentRunInfo, ModelConfig, AgentConfig, ToolCon...
ModelEngine-Group/nexent
https://github.com/ModelEngine-Group/nexent
null
null
null
null
4,394
null
null
mit
null
null
null
null
null
null
null
.claude/skills/skill-creator/scripts/package_skill.py
null
null
null
null
null
null
Python
2026-05-04T02:01:47.111876
#!/usr/bin/env python3 """ Skill Packager - Creates a distributable .skill file of a skill folder Usage: python utils/package_skill.py <path/to/skill-folder> [output-directory] Example: python utils/package_skill.py skills/public/my-skill python utils/package_skill.py skills/public/my-skill ./dist """ im...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ac_test_point_line_touching_at_start.py
null
null
null
null
null
null
Python
2026-05-04T02:01:50.994124
from utils import create_newfig, create_moving_point, create_still_segment, run_or_export func_code = 'ac' func_name = 'test_point_line_touching_at_start' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_point(fig, ax, renderer, 4, 1, 3, 2, 'top') create_still_...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
docs/conf.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.004019
# All configuration values have a default; values that are commented out # serve to show the default. import sys import os import shlex # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, us...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ae_test_line_line_no_intr.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.006720
from utils import create_newfig, create_moving_line, create_still_segment, run_or_export func_code = 'ae' func_name = 'test_line_line_no_intr' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_line(fig, ax, renderer, (1, 4), (1, 3), (2, 0), 'botright') create_st...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/aa_test_point_line_no_intr.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.007619
from utils import create_newfig, create_moving_point, create_still_segment, run_or_export def setup_fig01(): fig, ax, renderer = create_newfig('aa01') create_moving_point(fig, ax, renderer, 1, 1, 6, 1) create_still_segment(fig, ax, renderer, (2, 4), (6, 2)) return fig, ax, 'aa01_test_point_line_no...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ah_test_line_line_intr_later.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.009188
from utils import create_newfig, create_moving_line, create_still_segment, run_or_export func_code = 'ah' func_name = 'test_line_line_intr_later' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_line(fig, ax, renderer, (5, 4), (6, 3), (-2, -2), 'topright') crea...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ab_test_point_line_touching.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.010266
from utils import create_newfig, create_moving_point, create_still_segment, run_or_export func_code = 'ab' func_name = 'test_point_line_touching' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_point(fig, ax, renderer, 1, 1, 2, 4) create_still_segment(fig, ax,...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ad_test_point_line_intr_later.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.016219
from utils import create_newfig, create_moving_point, create_still_segment, run_or_export func_code = 'ad' func_name = 'test_point_line_intr_later' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_point(fig, ax, renderer, 0, 2, 3, 1, 'topright') create_still_se...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/af_test_line_line_touching.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.017387
from utils import create_newfig, create_moving_line, create_still_segment, run_or_export func_code = 'af' func_name = 'test_line_line_touching' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_line(fig, ax, renderer, (1, 3), (2, 3), (3, -3), 'top') create_still...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ag_test_line_line_touching_at_start.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.075985
from utils import create_newfig, create_moving_line, create_still_segment, run_or_export func_code = 'ag' func_name = 'test_line_line_touching_at_start' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_line(fig, ax, renderer, (1, 1), (2, 1), (0, 2), 'botleft') ...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/an_test_one_moving_one_stationary_distlimit_touching.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.628207
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'an' func_name = 'test_one_moving_one_stationary_distlimit_touching' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((0, 2), (0, 3),...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/am_test_one_moving_one_stationary_distlimit_no_intr.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.637637
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'am' func_name = 'test_one_moving_one_stationary_distlimit_no_intr' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((0, 2), (0, 3), ...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ap_test_one_moving_one_stationary_distlimit_intr_later.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.643490
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'ap' func_name = 'test_one_moving_one_stationary_distlimit_intr_later' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code), xlim=(-1, 10), ylim=(-1, 7)) create_moving_polygon(fig,...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ai_test_one_moving_one_stationary_no_intr.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.644724
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'ai' func_name = 'test_one_moving_one_stationary_no_intr' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((0, 1, 'right'), (1, 2, 'b...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/aj_test_one_moving_one_stationary_touching.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.654435
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'aj' func_name = 'test_one_moving_one_stationary_touching' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((4, 2), (3, 3), (4, 4), (...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/ao_test_one_moving_one_stationary_distlimit_intr_at_start.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.674344
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'ao' func_name = 'test_one_moving_one_stationary_distlimit_intr_at_start' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((3, 1), (3...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/al_test_one_moving_one_stationary_intr_later.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.675405
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'al' func_name = 'test_one_moving_one_stationary_intr_later' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code)) create_moving_polygon(fig, ax, renderer, ((4, 2), (5, 3), (6, 2))...
OmkarPathak/pygorithm
https://github.com/OmkarPathak/pygorithm
null
null
null
null
4,392
null
null
mit
null
null
null
null
null
null
null
imgs/test_geometry/test_extrapolated_intersection/aq_test_one_moving_one_stationary_distlimit_touch_at_limit.py
null
null
null
null
null
null
Python
2026-05-04T02:01:51.677583
from utils import create_newfig, create_moving_polygon, create_still_polygon, run_or_export func_code = 'aq' func_name = 'test_one_moving_one_stationary_distlimit_touch_at_limit' def setup_fig01(): fig, ax, renderer = create_newfig('{}01'.format(func_code), ylim=(-1, 7)) create_moving_polygon(fig, ax, render...