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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/adapters/openai/utils.py | utils.py | .py | 5,381 | https://github.com/ajndkr/lanarky/blob/main/lanarky/adapters/openai/utils.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/adapters/openai/utils.py | b56f0ca7f8d854406910cc7430963691b05b8833 | Python | 2026-05-04T01:23:01.004712 | import re
from typing import Any, Awaitable, Callable
from fastapi import Depends
from pydantic import BaseModel, create_model
from starlette.routing import compile_path
from lanarky.events import Events
from lanarky.logging import logger
from lanarky.utils import model_dump, model_fields
from lanarky.websockets impo... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/applications.py | applications.py | .py | 3,560 | https://github.com/ajndkr/lanarky/blob/main/lanarky/applications.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/applications.py | 6c819ddf84e319291deb59a6077ea0e0235b0be1 | Python | 2026-05-04T01:23:02.358855 | from typing import Any
from fastapi.applications import AppType, FastAPI
from fastapi.openapi.docs import (
get_redoc_html,
get_swagger_ui_html,
get_swagger_ui_oauth2_redirect_html,
)
from fastapi.requests import Request
from fastapi.responses import HTMLResponse, JSONResponse
class Lanarky(FastAPI):
... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/clients.py | clients.py | .py | 3,377 | https://github.com/ajndkr/lanarky/blob/main/lanarky/clients.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/clients.py | 01cba2231ff410512ba9383a268c29bc093f1cca | Python | 2026-05-04T01:23:03.685403 | import json
from contextlib import contextmanager
from typing import Any, Iterator, Optional
import httpx
from httpx_sse import ServerSentEvent, connect_sse
from websockets.sync.client import connect as websocket_connect
from lanarky.websockets import DataMode
class StreamingClient:
"""Test client for streaming... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/events.py | events.py | .py | 250 | https://github.com/ajndkr/lanarky/blob/main/lanarky/events.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/events.py | 25362fa33d894b8eff28f04d2e33072bb408779c | Python | 2026-05-04T01:23:05.005068 | from sse_starlette.sse import ServerSentEvent as ServerSentEvent
from sse_starlette.sse import ensure_bytes as ensure_bytes
from lanarky.utils import StrEnum
class Events(StrEnum):
COMPLETION = "completion"
ERROR = "error"
END = "end"
|
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/logging.py | logging.py | .py | 439 | https://github.com/ajndkr/lanarky/blob/main/lanarky/logging.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/logging.py | 6d7db0b8216377ab2d26a2a046823f909eda19dc | Python | 2026-05-04T01:23:06.125209 | import sys
from typing import Any
import loguru
def get_logger(handler: Any = sys.stderr, **kwargs: dict[str, Any]) -> Any:
"""Get a logger instance.
Lanarky uses `loguru` for logging.
Args:
handler: The handler to use for the logger.
Returns:
A loguru logger instance.
"""
... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/responses.py | responses.py | .py | 2,384 | https://github.com/ajndkr/lanarky/blob/main/lanarky/responses.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/responses.py | c70b0f1bd1cb499f10265db17cec798ab51aa043 | Python | 2026-05-04T01:23:07.353996 | from typing import Any
from fastapi import status
from sse_starlette.sse import EventSourceResponse
from starlette.types import Send
from lanarky.events import Events, ServerSentEvent, ensure_bytes
from lanarky.logging import logger
from lanarky.utils import StrEnum
class HTTPStatusDetail(StrEnum):
INTERNAL_SER... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/utils.py | utils.py | .py | 1,080 | https://github.com/ajndkr/lanarky/blob/main/lanarky/utils.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/utils.py | 9d7456500ca21fd14fe5f1e322cf533ba620c7b7 | Python | 2026-05-04T01:23:08.684739 | from typing import Any
import pydantic
from pydantic.fields import FieldInfo
try:
from enum import StrEnum # type: ignore
except ImportError:
from enum import Enum
class StrEnum(str, Enum): ...
PYDANTIC_V2 = pydantic.VERSION.startswith("2.")
def model_dump(model: pydantic.BaseModel, **kwargs) -> dic... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | lanarky/websockets.py | websockets.py | .py | 1,860 | https://github.com/ajndkr/lanarky/blob/main/lanarky/websockets.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/lanarky/websockets.py | 2c8f5cb12792cd522b863d05ab8b4a1f29173ccc | Python | 2026-05-04T01:23:10.028178 | from contextlib import asynccontextmanager
from typing import Generator
from fastapi.websockets import WebSocket, WebSocketDisconnect
from lanarky.logging import logger
from lanarky.utils import StrEnum
class DataMode(StrEnum):
JSON = "json"
TEXT = "text"
BYTES = "bytes"
class WebsocketSession:
""... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/langchain/test_langchain_callbacks.py | test_langchain_callbacks.py | .py | 9,760 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/langchain/test_langchain_callbacks.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/langchain/test_langchain_callbacks.py | 818962c1fb1b0e758194af1aba7ec2bb2205af5d | Python | 2026-05-04T01:23:11.666032 | from unittest.mock import MagicMock, create_autospec, patch
import pytest
from langchain.agents import AgentExecutor
from langchain.chains import ConversationChain
from langchain.schema.document import Document
from starlette.types import Send
from lanarky.adapters.langchain import callbacks
from lanarky.adapters.lan... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/langchain/test_langchain_dependencies.py | test_langchain_dependencies.py | .py | 785 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/langchain/test_langchain_dependencies.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/langchain/test_langchain_dependencies.py | 90f2a86a4c4490d6ed71a908cda242c6d7395816 | Python | 2026-05-04T01:23:13.114770 | from unittest.mock import MagicMock, create_autospec
import pytest
from fastapi import params
from langchain.chains import ConversationChain
from lanarky.adapters.langchain.dependencies import Depends
def test_depends_success():
def mock_dependency():
chain: ConversationChain = create_autospec(Conversat... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/langchain/test_langchain_responses.py | test_langchain_responses.py | .py | 2,897 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/langchain/test_langchain_responses.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/langchain/test_langchain_responses.py | 2f00365ef4428ae6e70b6249f939a0898b00b4fd | Python | 2026-05-04T01:23:14.523669 | from typing import Type
from unittest.mock import AsyncMock, MagicMock, call
import pytest
from langchain.chains.base import Chain
from starlette.background import BackgroundTask
from starlette.types import Send
from lanarky.adapters.langchain.callbacks import TokenStreamingCallbackHandler
from lanarky.adapters.langc... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/langchain/test_langchain_routing.py | test_langchain_routing.py | .py | 2,579 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/langchain/test_langchain_routing.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/langchain/test_langchain_routing.py | 03d8dd5193bcfa3971effdc2e4708b619736c326 | Python | 2026-05-04T01:23:15.853573 | from unittest.mock import AsyncMock, MagicMock, create_autospec, patch
import pytest
from fastapi import Depends
from langchain.chains import ConversationChain
from lanarky.adapters.langchain.routing import (
LangchainAPIRoute,
LangchainAPIRouter,
LangchainAPIWebSocketRoute,
)
def test_langchain_api_rou... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/openai/test_openai_dependencies.py | test_openai_dependencies.py | .py | 716 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/openai/test_openai_dependencies.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/openai/test_openai_dependencies.py | 3103d3470f188fc0046d1c7bc3d7f4369b16b5ca | Python | 2026-05-04T01:23:17.087028 | from unittest.mock import MagicMock, create_autospec
import pytest
from fastapi import params
from lanarky.adapters.openai.dependencies import Depends
from lanarky.adapters.openai.resources import ChatCompletionResource
def test_depends_success():
def mock_dependency() -> ChatCompletionResource:
return ... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/openai/test_openai_resources.py | test_openai_resources.py | .py | 3,700 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/openai/test_openai_resources.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/openai/test_openai_resources.py | 1e4bc23c39274340747e0bc5639cf602b042c930 | Python | 2026-05-04T01:23:18.413698 | from unittest.mock import AsyncMock, MagicMock
import pytest
from openai.types.chat import chat_completion, chat_completion_chunk
from lanarky.adapters.openai.resources import (
AsyncOpenAI,
ChatCompletion,
ChatCompletionChunk,
ChatCompletionResource,
Message,
)
@pytest.mark.asyncio
async def te... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/openai/test_openai_responses.py | test_openai_responses.py | .py | 2,615 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/openai/test_openai_responses.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/openai/test_openai_responses.py | 96c424ed94c325d2aadd7a09c9b5cb52c00406d2 | Python | 2026-05-04T01:23:19.744595 | from unittest.mock import MagicMock, call
import pytest
from starlette.types import Send
from lanarky.adapters.openai.resources import ChatCompletionResource
from lanarky.adapters.openai.responses import (
HTTPStatusDetail,
StreamingResponse,
status,
)
from lanarky.events import Events, ServerSentEvent, e... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/adapters/openai/test_openai_routing.py | test_openai_routing.py | .py | 1,430 | https://github.com/ajndkr/lanarky/blob/main/tests/adapters/openai/test_openai_routing.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/adapters/openai/test_openai_routing.py | 4e613967875c135dafab76448da48194e01e6e95 | Python | 2026-05-04T01:23:20.984735 | from unittest.mock import create_autospec
import pytest
from lanarky.adapters.openai.resources import ChatCompletionResource
from lanarky.adapters.openai.routing import OpenAIAPIRoute, OpenAIAPIRouter
def test_langchain_api_router():
router = OpenAIAPIRouter()
assert isinstance(router, OpenAIAPIRouter)
... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/conftest.py | conftest.py | .py | 631 | https://github.com/ajndkr/lanarky/blob/main/tests/conftest.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/conftest.py | 379594d40a0cf262b0a48d1e63a6cf646ab41c53 | Python | 2026-05-04T01:23:22.309815 | from typing import Iterator, Type
from unittest.mock import AsyncMock, create_autospec
import pytest
from starlette.types import Send
from lanarky.websockets import WebSocket
@pytest.fixture(scope="function")
def send() -> Send:
return AsyncMock(spec=Send)
@pytest.fixture(scope="function")
def body_iterator()... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/test_applications.py | test_applications.py | .py | 531 | https://github.com/ajndkr/lanarky/blob/main/tests/test_applications.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/test_applications.py | 092ce2a9e3f2da72c903407404474f63cf4e5b0c | Python | 2026-05-04T01:23:23.636370 | import pytest
from fastapi.testclient import TestClient
from lanarky import Lanarky
@pytest.fixture
def app() -> Lanarky:
return Lanarky()
def test_app_instance(app: Lanarky):
assert isinstance(app, Lanarky)
assert app.title == "Lanarky"
def test_custom_title():
custom_title = "My Custom Title"
... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/test_logging.py | test_logging.py | .py | 1,062 | https://github.com/ajndkr/lanarky/blob/main/tests/test_logging.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/test_logging.py | 715e67516ba39809ff35dd615ee056ea10e6cfb9 | Python | 2026-05-04T01:23:25.154275 | import loguru
from lanarky.logging import get_logger
def test_get_logger_default():
logger = get_logger()
assert logger is not None
assert isinstance(logger, loguru._logger.Logger)
def test_get_logger_custom_handler(tmpdir):
custom_handler = tmpdir.join("test.log")
logger = get_logger(handler=... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/test_responses.py | test_responses.py | .py | 2,751 | https://github.com/ajndkr/lanarky/blob/main/tests/test_responses.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/test_responses.py | 00854240a3d48d76d7e0de4753f977c0ecf07304 | Python | 2026-05-04T01:23:26.503189 | from typing import Iterator, Type
from unittest.mock import MagicMock, call
import pytest
from fastapi import status
from starlette.types import Send
from lanarky.events import Events, ServerSentEvent, ensure_bytes
from lanarky.responses import HTTPStatusDetail, StreamingResponse
@pytest.fixture
def streaming_respo... |
ajndkr/lanarky | https://github.com/ajndkr/lanarky | https://api.github.com/repos/ajndkr/lanarky | ajndkr | lanarky | The web framework for building LLM microservices [deprecated] | 992 | 76 | 992 | mit | main | 2023-04-07T05:36:32 | 2026-04-27T21:23:15 | [
"deprecated-repo",
"fastapi",
"llmops",
"microservices",
"python3",
"web"
] | {
"Python": 92508,
"Makefile": 1101
} | false | 9 | tests/test_websockets.py | test_websockets.py | .py | 2,265 | https://github.com/ajndkr/lanarky/blob/main/tests/test_websockets.py | https://raw.githubusercontent.com/ajndkr/lanarky/main/tests/test_websockets.py | 9857a55bc6a17e707ccf0321c9e9a6c4e77fb9cf | Python | 2026-05-04T01:23:27.732175 | from typing import Type
from unittest.mock import AsyncMock, patch
import pytest
from lanarky.websockets import (
DataMode,
WebSocket,
WebSocketDisconnect,
WebsocketSession,
)
@pytest.mark.asyncio
async def test_connect_json(websocket: Type[WebSocket]):
session = WebsocketSession()
data_to_s... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | examples/bulk_email_example.py | bulk_email_example.py | .py | 1,978 | https://github.com/sabuhish/fastapi-mail/blob/master/examples/bulk_email_example.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/examples/bulk_email_example.py | 34084dfa97490f008cd7cf6b41fc53719422884e | Python | 2026-05-04T01:23:31.952770 | """
Bulk email example demonstrating FastAPI-Mail's ability to send multiple messages in one call.
Run this file to see how you can prepare multiple MessageSchema instances and
send them over a single SMTP connection to avoid rate limiting or connection
overhead.
"""
from typing import List
from fastapi_mail import ... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | examples/name_email_example.py | name_email_example.py | .py | 2,420 | https://github.com/sabuhish/fastapi-mail/blob/master/examples/name_email_example.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/examples/name_email_example.py | 8324a7401d9a917b16c65b1491c0009a870d2342 | Python | 2026-05-04T01:23:33.467693 | """
NameEmail example for FastAPI-Mail
Usage example for NameEmail format in recipients.
"""
from fastapi_mail import MessageSchema, MessageType
async def name_email_example():
"""NameEmail usage example"""
# Configuration (replace with your actual email settings)
# conf = ConnectionConfig(
# M... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | examples/schema.py | schema.py | .py | 308 | https://github.com/sabuhish/fastapi-mail/blob/master/examples/schema.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/examples/schema.py | 25ef49119bf66ac8b82528af7d635d0fcccccd86 | Python | 2026-05-04T01:23:34.696183 | from typing import List
from pydantic import BaseModel, NameEmail
class EmailSchema(BaseModel):
email: List[
NameEmail
] # Supports both "user@example.com" and "Name <user@example.com>" formats
# Note: Avoid spaces in names for best compatibility (e.g., "JohnDoe <john@example.com>")
|
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | examples/templates.py | templates.py | .py | 287 | https://github.com/sabuhish/fastapi-mail/blob/master/examples/templates.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/examples/templates.py | 5a1bb904adc7aacf212d8297f4b8f0058256dec4 | Python | 2026-05-04T01:23:35.924141 | html = """
<p>Hi this test mail, thanks for using Fastapi-mail</p>
"""
template = """
<p>Hi this test mail using BackgroundTasks, thanks for using Fastapi-mail</p>
"""
bulkmail = """
<p>Hi this test mail, example of bulk mail using BackgroundTask thanks for using Fastapi-mail</p>
"""
|
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | examples/utils_example.py | utils_example.py | .py | 671 | https://github.com/sabuhish/fastapi-mail/blob/master/examples/utils_example.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/examples/utils_example.py | 6fb808699ca266ee82c85246c698bc7a1e3890a9 | Python | 2026-05-04T01:23:37.256202 | import asyncio
from fastapi_mail.email_utils import DefaultChecker, WhoIsXmlApi
checker = DefaultChecker(db_provider="redis")
loop = asyncio.get_event_loop()
loop.run_until_complete(checker.init_redis())
res = loop.run_until_complete(checker.blacklist_rm_temp("promail1.net"))
print(res)
loop_until = loop.run_until_co... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/__init__.py | __init__.py | .py | 434 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/__init__.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/__init__.py | d8ee839b7d1e2a02fc97dc0d8d226c4496addd39 | Python | 2026-05-04T01:23:38.484299 | from fastapi_mail.config import ConnectionConfig
from fastapi_mail.fastmail import FastMail
from fastapi_mail.schemas import (
MessageSchema,
MessageType,
MultipartSubtypeEnum,
NameEmail,
)
from . import email_utils
__author__ = "sabuhi.shukurov@gmail.com"
__all__ = [
"FastMail",
"ConnectionC... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/config.py | config.py | .py | 1,249 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/config.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/config.py | 14df729f94163386a3413995263d141c77bbd21d | Python | 2026-05-04T01:23:39.918810 | from typing import Optional
from aiosmtplib.api import DEFAULT_TIMEOUT
from jinja2 import Environment, FileSystemLoader
from pydantic import DirectoryPath, EmailStr, SecretStr, conint
from pydantic_settings import BaseSettings as Settings
class ConnectionConfig(Settings):
MAIL_USERNAME: str
MAIL_PASSWORD: Se... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/connection.py | connection.py | .py | 2,008 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/connection.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/connection.py | 831d508bcb7f16c9c76ca7f7d70de905f20e63d2 | Python | 2026-05-04T01:23:41.267812 | import aiosmtplib
from fastapi_mail.config import ConnectionConfig
from fastapi_mail.errors import ConnectionErrors, PydanticClassRequired
class Connection:
"""
Manages Connection to provided email service with its credentials
"""
def __init__(self, settings: ConnectionConfig) -> None:
if no... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/email_utils/__init__.py | __init__.py | .py | 122 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/email_utils/__init__.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/email_utils/__init__.py | 5513d207a9c516c47856564f2e980b759d6a17f1 | Python | 2026-05-04T01:23:42.478285 | from fastapi_mail.email_utils.email_check import DefaultChecker, WhoIsXmlApi
__all__ = ["DefaultChecker", "WhoIsXmlApi"]
|
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/email_utils/email_check.py | email_check.py | .py | 18,851 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/email_utils/email_check.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/email_utils/email_check.py | af535cf7e27db29519460436ef09477826e8e04f | Python | 2026-05-04T01:23:43.834112 | import inspect
from abc import ABC, abstractmethod
from typing import Any, Dict, List, Optional, Set, Union
import dns.exception
import dns.resolver
from email_validator import EmailNotValidError, validate_email
try:
from redis import asyncio as aioredis
redis_lib = True
except ImportError:
redis_lib = F... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/errors.py | errors.py | .py | 577 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/errors.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/errors.py | 6aed23f4f3b0f73d72756d04a4a70d2e4d6cb85d | Python | 2026-05-04T01:23:45.270217 | class ConnectionErrors(Exception):
def __init__(self, expression):
self.expression = expression
class WrongFile(Exception):
def __init__(self, expression):
self.expression = expression
class PydanticClassRequired(Exception):
def __init__(self, expression):
self.expression = expre... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/fastmail.py | fastmail.py | .py | 8,010 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/fastmail.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/fastmail.py | ff66478a9761bd57d4b5906f980f3e3d157c01e1 | Python | 2026-05-04T01:23:46.881668 | from contextlib import contextmanager
from email.message import EmailMessage, Message
from email.utils import formataddr
from typing import Any, Dict, Optional, Union
import blinker
from jinja2 import Environment, Template
from pydantic import EmailStr
from fastapi_mail.config import ConnectionConfig
from fastapi_mai... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/msg.py | msg.py | .py | 6,586 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/msg.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/msg.py | 27f2395d270c22af9116d4e1a4d3ab2a9640afe9 | Python | 2026-05-04T01:23:48.332616 | import sys
import time
from email.encoders import encode_base64
from email.message import EmailMessage, Message
from email.mime.base import MIMEBase
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import formatdate, make_msgid
from typing import Any, Union
from .sch... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | fastapi_mail/schemas.py | schemas.py | .py | 3,495 | https://github.com/sabuhish/fastapi-mail/blob/master/fastapi_mail/schemas.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/fastapi_mail/schemas.py | a7227e7912888b3e39a675c1d2668b7bae3cc668 | Python | 2026-05-04T01:23:49.646637 | import os
from enum import Enum
from io import BytesIO
from mimetypes import MimeTypes
from typing import Dict, List, Optional, Union
from pydantic import (
BaseModel,
ConfigDict,
EmailStr,
NameEmail,
field_validator,
model_validator,
)
from starlette.datastructures import Headers, UploadFile
... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/conftest.py | conftest.py | .py | 1,224 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/conftest.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/conftest.py | 37100b0b11a00ef24da45b93efa9e3544cdae6dd | Python | 2026-05-04T01:23:50.976841 | from pathlib import Path
from typing import Generator
import fakeredis.aioredis
import pytest
import pytest_asyncio
from fastapi_mail.email_utils import DefaultChecker
@pytest.fixture
def default_checker():
test = DefaultChecker()
yield test
del test
@pytest_asyncio.fixture
async def redis_checker():
... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/test_checker.py | test_checker.py | .py | 1,720 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/test_checker.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/test_checker.py | 298154aa94b1486b03d80c1cc480a6680f8da2e3 | Python | 2026-05-04T01:23:52.312079 | import pytest
from email_validator import EmailNotValidError
from fastapi_mail.errors import DBProvaiderError
@pytest.mark.asyncio
async def test_default_checker(default_checker):
await default_checker.fetch_temp_email_domains()
assert default_checker.TEMP_EMAIL_DOMAINS != []
email = "test@hotmail.com"
... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/test_connection.py | test_connection.py | .py | 18,503 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/test_connection.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/test_connection.py | 272a23a36ab4109e7395b293ec4062c92427b253 | Python | 2026-05-04T01:23:53.799746 | import os
from unittest.mock import patch
import pytest
from fastapi_mail import (
ConnectionConfig,
FastMail,
MessageSchema,
MessageType,
MultipartSubtypeEnum,
)
from fastapi_mail.connection import Connection
from fastapi_mail.errors import EmptyMessagesList, PydanticClassRequired
CONTENT = "Thi... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/test_fastapi_mail.py | test_fastapi_mail.py | .py | 215 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/test_fastapi_mail.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/test_fastapi_mail.py | 2923daec86e989a27cbbdc9c596d3e00023522ab | Python | 2026-05-04T01:23:55.154421 | from fastapi_mail.config import ConnectionConfig
def test_configuration(mail_config):
conf = ConnectionConfig(**mail_config)
assert conf.MAIL_USERNAME == "example@test.com"
assert conf.MAIL_PORT == 25
|
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/test_message.py | test_message.py | .py | 8,124 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/test_message.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/test_message.py | a71923bda1bbe7745dd9b25edc571d99b402fea8 | Python | 2026-05-04T01:23:56.606061 | import os
import pytest
from fastapi_mail.msg import MailMsg
from fastapi_mail.schemas import MessageSchema, MessageType, MultipartSubtypeEnum
def test_initialize():
message = MessageSchema(
subject="test subject",
recipients=["uzezio22@gmail.com"],
body="test",
subtype=MessageTy... |
sabuhish/fastapi-mail | https://github.com/sabuhish/fastapi-mail | https://api.github.com/repos/sabuhish/fastapi-mail | sabuhish | fastapi-mail | Fastapi mail system sending mails(individual, bulk) attachments(individual, bulk) | 992 | 109 | 992 | mit | master | 2020-01-25T11:52:29 | 2026-05-01T11:24:52 | [
"fastapi",
"fastapi-mail",
"fastmail"
] | {
"Python": 72384,
"Makefile": 434,
"HTML": 202,
"Jinja": 29
} | false | 11 | tests/test_redis_config.py | test_redis_config.py | .py | 1,266 | https://github.com/sabuhish/fastapi-mail/blob/master/tests/test_redis_config.py | https://raw.githubusercontent.com/sabuhish/fastapi-mail/master/tests/test_redis_config.py | 9a70d099145cc28795f2b05db10e84afedb12aa2 | Python | 2026-05-04T01:23:57.851086 | import pytest
@pytest.mark.asyncio
async def test_redis_checker(redis_checker):
redis_checker.TEMP_EMAIL_DOMAINS = []
redis_checker.BLOCKED_ADDRESSES = {}
redis_checker.BLOCKED_DOMAINS = {}
email = "test_me@hotmail.com"
domain = email.split("@")[-1]
assert await redis_checker.is_disposable(em... |
likejazz/llama3.np | https://github.com/likejazz/llama3.np | https://api.github.com/repos/likejazz/llama3.np | likejazz | llama3.np | llama3.np is a pure NumPy implementation for Llama 3 model. | 992 | 82 | 992 | mit | main | 2024-05-13T09:16:30 | 2026-05-02T08:06:07 | [] | {
"Python": 14163
} | false | 4 | config.py | config.py | .py | 590 | https://github.com/likejazz/llama3.np/blob/main/config.py | https://raw.githubusercontent.com/likejazz/llama3.np/main/config.py | 3a4b81ffbdb3a7a8d2fcd770cb060edf6654d954 | Python | 2026-05-04T01:24:02.262592 | from typing import Optional
from dataclasses import dataclass
@dataclass
class ModelArgs:
# @formatter:off
# Model params for ./stories15M.model.npz
dim: int = 288 # D
n_layers: int = 6
n_heads: int = 6 # QHN, HN, HD = 48
n_kv_heads... |
likejazz/llama3.np | https://github.com/likejazz/llama3.np | https://api.github.com/repos/likejazz/llama3.np | likejazz | llama3.np | llama3.np is a pure NumPy implementation for Llama 3 model. | 992 | 82 | 992 | mit | main | 2024-05-13T09:16:30 | 2026-05-02T08:06:07 | [] | {
"Python": 14163
} | false | 4 | llama3.py | llama3.py | .py | 11,447 | https://github.com/likejazz/llama3.np/blob/main/llama3.py | https://raw.githubusercontent.com/likejazz/llama3.np/main/llama3.py | d81db7079e16a17839840f82682f2b4da63fd803 | Python | 2026-05-04T01:24:03.639735 | from __future__ import annotations
import math
import sys
import time
from typing import TypeVar, Generic, Optional
import numpy as np
from config import ModelArgs
from tokenizer import Tokenizer
from utils import load_parameters
Shape = TypeVar("Shape")
class Array(np.ndarray, Generic[Shape]): ...
def softmax(... |
likejazz/llama3.np | https://github.com/likejazz/llama3.np | https://api.github.com/repos/likejazz/llama3.np | likejazz | llama3.np | llama3.np is a pure NumPy implementation for Llama 3 model. | 992 | 82 | 992 | mit | main | 2024-05-13T09:16:30 | 2026-05-02T08:06:07 | [] | {
"Python": 14163
} | false | 4 | tokenizer.py | tokenizer.py | .py | 2,041 | https://github.com/likejazz/llama3.np/blob/main/tokenizer.py | https://raw.githubusercontent.com/likejazz/llama3.np/main/tokenizer.py | 0fb4f869fa64933a4a64137199790402a2dbfc53 | Python | 2026-05-04T01:24:04.898978 | from typing import List
import json
class Tokenizer:
def __init__(self, model_path: str):
with open(model_path, "r", encoding="utf-8") as f:
model = json.load(f)
self.vocab = model["tokens"]
self.scores = model["scores"]
self.bos_id = 1
self.eos_id = 2
def ... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/Browser/webrover_browser.py | webrover_browser.py | .py | 9,085 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/Browser/webrover_browser.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/Browser/webrover_browser.py | 01ac455029d1d27379f65c9882571d4dfce743b4 | Python | 2026-05-04T01:24:09.343921 | # webrover_browser.py
import asyncio
import platform
from pathlib import Path
from typing import Optional, Tuple
from playwright.async_api import async_playwright, Browser, BrowserContext, Page
import re
import os
import aiohttp
import socket
class WebRoverBrowser:
def __init__(self,
user_data_di... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/app/browser_manager.py | browser_manager.py | .py | 1,285 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/app/browser_manager.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/app/browser_manager.py | 67f5318562a44944c791e396b799e15d9e11b93b | Python | 2026-05-04T01:24:10.772618 | from Browser.webrover_browser import WebRoverBrowser
from typing import Dict, Any, Tuple
from playwright.async_api import Page, Browser
async def setup_browser(go_to_page: str) -> Tuple[Browser, Page]:
"""
Sets up a browser instance and returns the browser and page objects.
"""
print(f"Setting up brows... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/app/deep_research_agent.py | deep_research_agent.py | .py | 45,751 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/app/deep_research_agent.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/app/deep_research_agent.py | 33ec95bdd0facf980e7533afbf62d106fd272828 | Python | 2026-05-04T01:24:12.403590 | from dotenv import load_dotenv
from langchain_openai import ChatOpenAI
from langchain_anthropic import ChatAnthropic
import os
from typing import TypedDict, Annotated, List, Literal
from playwright.async_api import Page, Locator
from operator import add
from pydantic import BaseModel, Field
from Browser.webrover_browse... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/app/main.py | main.py | .py | 22,635 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/app/main.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/app/main.py | 5a3ce8978a45b058623102846cd99dd00b365048 | Python | 2026-05-04T01:24:13.973980 | from fastapi import FastAPI, HTTPException
from fastapi.responses import StreamingResponse
from pydantic import BaseModel
import asyncio
from typing import Optional, Dict, Any, Literal
from contextlib import asynccontextmanager
import json
import time
# Import necessary functions from agent files
from .task_agent impor... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/app/research_agent.py | research_agent.py | .py | 40,861 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/app/research_agent.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/app/research_agent.py | 2cc2350567ff8e3e6f239035196f73ce134694f9 | Python | 2026-05-04T01:24:15.595226 | from dotenv import load_dotenv
from langchain_openai import ChatOpenAI
from langchain_anthropic import ChatAnthropic
import os
from typing import TypedDict, Annotated, List, Literal
from playwright.async_api import Page
from operator import add
from pydantic import BaseModel, Field
from Browser.webrover_browser import ... |
hrithikkoduri/WebRover | https://github.com/hrithikkoduri/WebRover | https://api.github.com/repos/hrithikkoduri/WebRover | hrithikkoduri | WebRover | WebRover is an autonomous AI agent designed to interpret user input and execute actions by interacting with web elements to accomplish tasks or answer questions. It leverages advanced language models and web automation tools to navigate the web, gather information, and provide structured responses based on the user's n... | 992 | 172 | 992 | mit | main | 2025-01-14T01:11:21 | 2026-04-19T14:15:01 | [] | {
"Python": 167337,
"JavaScript": 92570,
"TypeScript": 59633,
"CSS": 1196
} | false | 8 | backend/app/task_agent.py | task_agent.py | .py | 47,720 | https://github.com/hrithikkoduri/WebRover/blob/main/backend/app/task_agent.py | https://raw.githubusercontent.com/hrithikkoduri/WebRover/main/backend/app/task_agent.py | 8042a059f2bde7977f313ae18c98630448a26ae4 | Python | 2026-05-04T01:24:17.790656 | from dotenv import load_dotenv
from langchain_openai import ChatOpenAI
from langchain_anthropic import ChatAnthropic
import os
from Browser.webrover_browser import WebRoverBrowser
from typing import TypedDict, List, Annotated, Literal, Optional
from operator import add
from playwright.async_api import Page, Locator
f... |
clcarwin/focal_loss_pytorch | https://github.com/clcarwin/focal_loss_pytorch | https://api.github.com/repos/clcarwin/focal_loss_pytorch | clcarwin | focal_loss_pytorch | A PyTorch Implementation of Focal Loss. | 992 | 219 | 992 | mit | master | 2017-08-12T15:41:46 | 2026-04-28T05:25:07 | [] | {
"Python": 2484
} | false | 14 | focalloss.py | focalloss.py | .py | 1,352 | https://github.com/clcarwin/focal_loss_pytorch/blob/master/focalloss.py | https://raw.githubusercontent.com/clcarwin/focal_loss_pytorch/master/focalloss.py | 850b25c7559d115563e39b26775a17f0a82e05c8 | Python | 2026-05-04T01:24:27.224253 | import torch
import torch.nn as nn
import torch.nn.functional as F
from torch.autograd import Variable
class FocalLoss(nn.Module):
def __init__(self, gamma=0, alpha=None, size_average=True):
super(FocalLoss, self).__init__()
self.gamma = gamma
self.alpha = alpha
if isinstance(alpha,... |
clcarwin/focal_loss_pytorch | https://github.com/clcarwin/focal_loss_pytorch | https://api.github.com/repos/clcarwin/focal_loss_pytorch | clcarwin | focal_loss_pytorch | A PyTorch Implementation of Focal Loss. | 992 | 219 | 992 | mit | master | 2017-08-12T15:41:46 | 2026-04-28T05:25:07 | [] | {
"Python": 2484
} | false | 14 | focalloss_test.py | focalloss_test.py | .py | 1,132 | https://github.com/clcarwin/focal_loss_pytorch/blob/master/focalloss_test.py | https://raw.githubusercontent.com/clcarwin/focal_loss_pytorch/master/focalloss_test.py | 2cd79a37b325b814b46221b70235696706bdab38 | Python | 2026-05-04T01:24:28.439297 | from __future__ import print_function
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
from torch.autograd import Variable
import os,sys,random,time
import argparse
from focalloss import *
start_time = time.time()
maxe = 0
for i in range(1000):
x = torch.rand(12800... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Browser-based-agents/Notte-labs-agent/Nike-products-agent/agent.py | agent.py | .py | 4,049 | https://github.com/fetchai/innovation-lab-examples/blob/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/agent.py | f1e21d160f3054710f5ffe7764cf2696aafeb83a | Python | 2026-05-04T01:24:35.333559 | """
Nike Scraper Agent with ASI1 LLM compatibility.
This agent scrapes Nike products and categories and makes them available through
natural language queries via ASI1 LLM integration.
"""
import os
from enum import Enum
import asyncio
from uagents import Agent, Context, Model
from uagents.experimental.quota import Q... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Browser-based-agents/Notte-labs-agent/Nike-products-agent/chat_proto.py | chat_proto.py | .py | 5,476 | https://github.com/fetchai/innovation-lab-examples/blob/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/chat_proto.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/chat_proto.py | 9db3c7e42d10737f144366da0a6b27f0a20ff928 | Python | 2026-05-04T01:24:37.268486 | """
Chat protocol implementation for enabling text-based communication between Nike Scraper Agent and ASI1 LLM.
"""
from datetime import datetime
from uuid import uuid4
from typing import Any
from uagents import Context, Model, Protocol
# Import the necessary components of the chat protocol
from uagents_core.contrib... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Browser-based-agents/Notte-labs-agent/Nike-products-agent/nike_scraper.py | nike_scraper.py | .py | 36,957 | https://github.com/fetchai/innovation-lab-examples/blob/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/nike_scraper.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Browser-based-agents/Notte-labs-agent/Nike-products-agent/nike_scraper.py | 159695da0ecce2e9c85970d423565f536241ac86 | Python | 2026-05-04T01:24:38.940574 | """
Enhanced Nike Product Scraper functions and data models.
"""
import os
from pathlib import Path
from dotenv import load_dotenv
load_dotenv() # Load environment variables from .env file
from typing import Optional, List, Dict, Any
from enum import Enum as PythonEnum
from notte_sdk import NotteClient, RemoteSessio... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/agent.py | agent.py | .py | 23,719 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/agent.py | ab48f19d89474128249bbe8a233b8d381f468b88 | Python | 2026-05-04T01:24:40.729825 | """agent.py - uAgents bridge for Agentverse mailbox deployment.
Entry point for the Real Estate Search Agent. Handles:
- SearchRequest / FollowUpRequest messages
- Chat protocol (ASI:One compatible)
- Stripe payment gate (optional)
- Google Sheets delivery after payment confirmation
"""
import asyncio
import os
impor... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/scraper.py | scraper.py | .py | 4,833 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/scraper.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/scraper.py | 3f6894359a01f321515dbad1dbbf4587eb460310 | Python | 2026-05-04T01:24:42.091068 | """
scraper.py — Real estate data fetcher using HomeHarvest.
HomeHarvest is the best free option: it scrapes Zillow, Realtor.com and Redfin
simultaneously using their hidden/internal APIs (no API key needed), returns
a clean pandas DataFrame, and is actively maintained.
Why HomeHarvest over raw scraping?
- No API key... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/scripts/register_mailbox.py | register_mailbox.py | .py | 3,128 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/scripts/register_mailbox.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/scripts/register_mailbox.py | 4f94ada787040dca0ad10ad4d5aef6d3251e79f7 | Python | 2026-05-04T01:24:43.392824 | """
register_mailbox.py - Registers the agent as a mailbox agent in Agentverse
without needing the Inspector UI.
Run once from the project root with the venv active:
python register_mailbox.py
"""
import asyncio
import os
import aiohttp
from dotenv import load_dotenv
from uagents_core.config import AgentverseCon... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/sheets.py | sheets.py | .py | 11,675 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/sheets.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/sheets.py | 741ea2d25d4f31f7ab5734708c664a3c39fcc925 | Python | 2026-05-04T01:24:44.928437 | """Google Sheets integration with per-user OAuth device flow."""
import json
import os
import time
import urllib.error
import urllib.parse
import urllib.request
from datetime import datetime
from typing import Any
import gspread
import pandas as pd
from google.auth.transport.requests import Request
from google.oauth2... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/stripe_payments.py | stripe_payments.py | .py | 4,400 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/stripe_payments.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/stripe_payments.py | 1ca34ff43cdf2080855917940b7e70a26c39fb4c | Python | 2026-05-04T01:24:46.261526 | """stripe_payments.py — Stripe Checkout integration for the real estate agent.
Uses embedded checkout so the ASI:One wallet can render the payment UI inline.
The checkout session ID is passed as RequestPayment metadata; the client sends
CommitPayment with that ID as transaction_id after the user pays.
"""
import os
i... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Claude Agent SDK/real-estate-search-agent/workflow.py | workflow.py | .py | 21,350 | https://github.com/fetchai/innovation-lab-examples/blob/main/Claude Agent SDK/real-estate-search-agent/workflow.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Claude Agent SDK/real-estate-search-agent/workflow.py | e2798f6d481e36526d83004d0f8c984abde43ac2 | Python | 2026-05-04T01:24:47.902413 | """
workflow.py — Core agent workflow using the Anthropic Messages API directly.
Replaces claude_agent_sdk with a standard agentic tool-use loop that works
anywhere (Agentverse, local, any server) without extra dependencies.
Architecture:
parse_search_intent() → single-turn Claude call to extract structured JSON
... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/gmail-agent/formatting.py | formatting.py | .py | 11,379 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/gmail-agent/formatting.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/gmail-agent/formatting.py | 08b623a6a4d77cc666cc4c7b6b5ead938be41a8a | Python | 2026-05-04T01:24:49.328562 | """
Markdown formatting helpers for consistent user output.
"""
import ast
from typing import Any, Dict, List
from datetime import datetime, timezone
def extract_gmail_response(intermediate_steps: List) -> Dict[str, Any]:
email_id = "N/A"
thread_id = "N/A"
labels: List[str] = []
try:
if inter... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/gmail-agent/llm.py | llm.py | .py | 1,923 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/gmail-agent/llm.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/gmail-agent/llm.py | f545e10158009992100ad4ee11bf38528b8a97b0 | Python | 2026-05-04T01:24:50.665712 | """
LLM and Agent construction helpers.
"""
import os
from langchain import hub
from langchain.agents import AgentExecutor, create_openai_functions_agent
from langchain_openai import ChatOpenAI
from typing import Any, Dict
from system_prompt import HUB_PROMPT_NAME
def build_email_agent(tools) -> AgentExecutor:
p... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/gmail-agent/system_prompt.py | system_prompt.py | .py | 1,970 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/gmail-agent/system_prompt.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/gmail-agent/system_prompt.py | ef6c793ac6ae952625dfe81671f3b52ed66369a6 | Python | 2026-05-04T01:24:51.993390 | """
Centralized system prompts and constants used across the app.
"""
# High-level flow description for documentation and debugging
SYSTEM_FLOW = (
"System Flow (Agent):\n\n"
"1) Parse chat input for email intent: send or fetch. Extract fields (to, subject, body) and optional From:.\n"
"2) On connect, reme... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/gmail-agent/tools.py | tools.py | .py | 3,333 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/gmail-agent/tools.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/gmail-agent/tools.py | 59b63aa08edf37cd5c81b3b9947b84b74a739ae2 | Python | 2026-05-04T01:24:53.306624 | """
Tooling setup via Composio and LangChain.
"""
import os
from composio import Composio
from composio_langchain import LangchainProvider
def get_composio_lc() -> Composio:
return Composio(
api_key=os.getenv("COMPOSIO_API_KEY", ""),
provider=LangchainProvider(),
)
def get_gmail_tools_for_u... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/gmail-agent/uagent_app.py | uagent_app.py | .py | 52,194 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/gmail-agent/uagent_app.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/gmail-agent/uagent_app.py | 9bb30f5414fbb8441d4652709e31e1543fed28cd | Python | 2026-05-04T01:24:54.829248 | from datetime import datetime, timezone
from uuid import uuid4
import os
import re
from dotenv import load_dotenv
from uagents import Context, Protocol, Agent
from uagents_core.contrib.protocols.chat import (
ChatAcknowledgement,
ChatMessage,
TextContent,
chat_protocol_spec,
)
from tools import (
g... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Composio/linkedln/agent.py | agent.py | .py | 22,310 | https://github.com/fetchai/innovation-lab-examples/blob/main/Composio/linkedln/agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Composio/linkedln/agent.py | fc27a261864d3f3b5d5b186a8b89bb6271cbd593 | Python | 2026-05-04T01:24:57.727757 | from datetime import datetime, timezone
from uuid import uuid4
import os
from dotenv import load_dotenv
from openai import OpenAI
from uagents import Context, Protocol, Agent
from uagents_core.contrib.protocols.chat import (
ChatAcknowledgement,
ChatMessage,
TextContent,
chat_protocol_spec,
)
from compo... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Blood-Report-Analysis-Agent/scripts/agents.py | agents.py | .py | 3,034 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/agents.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/agents.py | 689ae395c2beec4270c4e80502ec8a705e38e442 | Python | 2026-05-04T01:24:59.179964 | from crewai import Agent
from crewai_tools import (
DirectoryReadTool,
FileReadTool,
SerperDevTool,
WebsiteSearchTool,
PDFSearchTool
)
import os
os.environ["SERPER_API_KEY"] = "b924f60ae1564e450f297dc464410ff7190abb85"
class BloodReportAgents:
def blood_report_analyst(self):
return Age... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Blood-Report-Analysis-Agent/scripts/main.py | main.py | .py | 5,500 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/main.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/main.py | 41ae48e652430eb5e34b5309786af12c4958b7dc | Python | 2026-05-04T01:25:01.104332 | #!/usr/bin/env python3
"""Blood Report Analysis with CrewAI and uAgents Adapter."""
import os
import shutil
from crewai import Crew
from dotenv import load_dotenv
from uagents_adapter import CrewaiRegisterTool
from pdf_downloader import download_pdf_from_drive
from pdf_to_text import pdf_to_text
from agents import Bl... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_downloader.py | pdf_downloader.py | .py | 859 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_downloader.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_downloader.py | 4390585831b39e953fe71cd8cfba707671080eb0 | Python | 2026-05-04T01:25:03.048017 |
import requests
import os
def download_pdf_from_drive(drive_link, output_path):
try:
file_id = drive_link.split('/d/')[1].split('/')[0]
download_url = f"https://drive.google.com/uc?export=download&id={file_id}"
response = requests.get(download_url, stream=True)
if response.status_c... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_to_text.py | pdf_to_text.py | .py | 661 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_to_text.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/pdf_to_text.py | 79e7306037108405f5b9b1f8315fd1ddee9d12f8 | Python | 2026-05-04T01:25:04.093903 |
import PyPDF2
import os
def pdf_to_text(pdf_path, text_path):
try:
with open(pdf_path, 'rb') as file:
reader = PyPDF2.PdfReader(file)
text = ""
for page in reader.pages:
text += page.extract_text() + "\n"
with open(text_path, 'w', encoding='utf-8... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Blood-Report-Analysis-Agent/scripts/tasks.py | tasks.py | .py | 1,695 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/tasks.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Blood-Report-Analysis-Agent/scripts/tasks.py | 24b3f9c8ca8d612ccc9dd3d85b8f4716b96d2034 | Python | 2026-05-04T01:25:05.406356 |
from crewai import Task
class BloodReportTasks:
def analyze_blood_report(self, agent, pdf_path):
return Task(
description=f'Analyze the blood test report provided in the PDF file at {pdf_path}. Summarize key health indicators, including their significance, normal ranges, and potential health i... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Prep-for-a-meeting-Agent/agents.py | agents.py | .py | 1,805 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Prep-for-a-meeting-Agent/agents.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Prep-for-a-meeting-Agent/agents.py | 1f62551b9c17aa082751f39bff75362686835ab4 | Python | 2026-05-04T01:25:06.836923 | from textwrap import dedent
from crewai import Agent
from tools.ExaSearchTool import tools
class MeetingPreparationAgents():
def research_agent(self):
return Agent(
role='Research Specialist',
goal='Conduct thorough research on people and companies involved in the meeting',
tools=tools(),
backstory=ded... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Prep-for-a-meeting-Agent/tasks.py | tasks.py | .py | 2,544 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Prep-for-a-meeting-Agent/tasks.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Prep-for-a-meeting-Agent/tasks.py | bcf28d845754222f9b01a0e6e993e0e2c5fa9629 | Python | 2026-05-04T01:25:08.078063 | from textwrap import dedent
from crewai import Task
class MeetingPreparationTasks():
def research_task(self, agent, participants, context):
return Task(
description=dedent(f"""\
Conduct comprehensive research on each of the individuals and companies
involved in the upcoming meeting. Gather information on... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Prep-for-a-meeting-Agent/tools/ExaSearchTool.py | ExaSearchTool.py | .py | 3,324 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Prep-for-a-meeting-Agent/tools/ExaSearchTool.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Prep-for-a-meeting-Agent/tools/ExaSearchTool.py | 312f9f11a23610a13598c1377ac532a7e8972a95 | Python | 2026-05-04T01:25:09.505282 | import os
from typing import List, Optional
from pydantic import BaseModel, Field
from crewai.tools import BaseTool
from exa_py import Exa
# Singleton pattern for Exa API instance
class ExaAPI:
_instance = None
@classmethod
def get_instance(cls):
if cls._instance is None:
api_key =... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/Prep-for-a-meeting-Agent/uagent_main.py | uagent_main.py | .py | 8,453 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/Prep-for-a-meeting-Agent/uagent_main.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/Prep-for-a-meeting-Agent/uagent_main.py | 6883f9093750126e88bd3541967a2c09a8a89247 | Python | 2026-05-04T01:25:11.054210 | #!/usr/bin/env python3
"""Meeting Prep Crew script using CrewAI adapter for uAgents."""
import os
from openai import OpenAI
from typing import Dict, Any
import json
from crewai import Crew
from dotenv import load_dotenv
from uagents_adapter import CrewaiRegisterTool
from agents import MeetingPreparationAgents
from ta... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/code_analyzer/agents/code_agents.py | code_agents.py | .py | 2,276 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/code_analyzer/agents/code_agents.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/code_analyzer/agents/code_agents.py | 6124e78d6daf3a55d6f806b7c9db419bdf61c6e5 | Python | 2026-05-04T01:25:12.263397 | from crewai import Agent
from langchain_openai import ChatOpenAI
from langchain_core.prompts import PromptTemplate
class CodeAgents:
def __init__(self):
# Initialize the LLM with enhanced prompt for fetching relevant links
self.llm = ChatOpenAI(
model="gpt-4o",
temperature=0... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/code_analyzer/main.py | main.py | .py | 4,434 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/code_analyzer/main.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/code_analyzer/main.py | b2dc819f0a2e8293137c98e41fec20ea41d218fa | Python | 2026-05-04T01:25:13.598159 | #!/usr/bin/env python3
"""Code Analyzer script using CrewAI adapter for uAgents."""
import os
from crewai import Crew
from dotenv import load_dotenv
from uagents_adapter import CrewaiRegisterTool
from agents.code_agents import CodeAgents
from tasks.code_tasks import CodeTasks
class CodeAnalyzerCrew:
def __init__(... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/code_analyzer/tasks/code_tasks.py | code_tasks.py | .py | 4,089 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/code_analyzer/tasks/code_tasks.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/code_analyzer/tasks/code_tasks.py | 8931a72bdb1b566184f154ef7b6b06224317f5dc | Python | 2026-05-04T01:25:14.925533 | from textwrap import dedent
from crewai import Task
class CodeTasks:
def analyze_task(self, agent, code_snippet, language):
return Task(
description=dedent(f"""
Analyze the provided {language} code snippet for syntax errors, style violations (e.g., PEP 8 for Python), and potenti... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/main.py | main.py | .py | 2,107 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/main.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/main.py | 4cc91a34aa67402c94e3f700ce2f17bc14c31c45 | Python | 2026-05-04T01:25:16.355390 | from textwrap import dedent
from crewai import Crew
from dotenv import load_dotenv
from trip_agents import TripAgents
from trip_tasks import TripTasks
load_dotenv()
class TripCrew:
def __init__(self, origin, cities, date_range, interests):
self.cities = cities
self.origin = origin
self.... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/main_uagents.py | main_uagents.py | .py | 3,974 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/main_uagents.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/main_uagents.py | 68d60fc7f1643546561b241b5c9322c5ba5c9923 | Python | 2026-05-04T01:25:17.801563 | #!/usr/bin/env python3
"""Trip Planner script using CrewAI adapter for uAgents."""
import os
from crewai import Crew
from dotenv import load_dotenv
from uagents_adapter import CrewaiRegisterTool
from trip_agents import TripAgents
from trip_tasks import TripTasks
class TripCrew:
def __init__(self, origin, citie... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/tools/browser_tools.py | browser_tools.py | .py | 1,709 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/tools/browser_tools.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/tools/browser_tools.py | e52f6746dc2e34b5153bca8d84e5e67403ee4bb4 | Python | 2026-05-04T01:25:19.128078 | import json
import os
import requests
from crewai import Agent, Task
from langchain.tools import tool
from unstructured.partition.html import partition_html
class BrowserTools:
@tool("Scrape website content")
def scrape_and_summarize_website(website):
"""Useful to scrape and summarize a website conte... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/tools/calculator_tools.py | calculator_tools.py | .py | 515 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/tools/calculator_tools.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/tools/calculator_tools.py | 055097a384d8149956ddef023888225ca3e7ebec | Python | 2026-05-04T01:25:20.452947 | from langchain.tools import tool
class CalculatorTools:
@tool("Make a calculation")
def calculate(operation):
"""Useful to perform any mathematical calculations,
like sum, minus, multiplication, division, etc.
The input to this tool should be a mathematical
expression, a couple... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/tools/search_tools.py | search_tools.py | .py | 7,826 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/tools/search_tools.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/tools/search_tools.py | 6d4dad0e8f2d1bf8519cd760b54e7ba274e84df4 | Python | 2026-05-04T01:25:21.989015 | import json
import os
import requests
from langchain.tools import tool
class SearchTools:
@tool("Search the internet")
def search_internet(query):
"""Useful to search the internet about a given topic and return relevant results"""
top_result_to_return = 4
url = "https://google.serper.de... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/trip_agents.py | trip_agents.py | .py | 1,435 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/trip_agents.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/trip_agents.py | c578f91039be9b31cf07dcf9a2bbf222708577db | Python | 2026-05-04T01:25:23.314653 | from crewai import Agent
from langchain_openai import ChatOpenAI
class TripAgents:
def __init__(self):
# Initialize the LLM to be used by all agents
self.llm = ChatOpenAI(model="gpt-4o", temperature=0.7)
def city_selection_agent(self):
return Agent(
role="City Selection Ex... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Crewai-agents/trip_planner/trip_tasks.py | trip_tasks.py | .py | 4,326 | https://github.com/fetchai/innovation-lab-examples/blob/main/Crewai-agents/trip_planner/trip_tasks.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Crewai-agents/trip_planner/trip_tasks.py | d76e39aeca5556c0dad8f5928f972c97d7f8c901 | Python | 2026-05-04T01:25:24.651902 | from textwrap import dedent
from crewai import Task
class TripTasks:
def identify_task(self, agent, origin, cities, interests, range):
return Task(
description=dedent(f"""
Analyze and select the best city for the trip based
on specific criteria such as weather... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | Rag-agent/ango/agent.py | agent.py | .py | 9,140 | https://github.com/fetchai/innovation-lab-examples/blob/main/Rag-agent/ango/agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/Rag-agent/ango/agent.py | 0d3f29f7702b40a026b5f30f06a7123e64e16a70 | Python | 2026-05-04T01:25:26.103686 | import os
import logging
from datetime import datetime
from uuid import uuid4
from dotenv import load_dotenv
# Load environment variables
load_dotenv()
# Import Agno components for RAG functionality
from agno.agent import Agent as AgnoAgent, AgentKnowledge
from agno.embedder.openai import OpenAIEmbedder
from agno.mod... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-cart-store/av_adapter.py | av_adapter.py | .py | 1,064 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-cart-store/av_adapter.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-cart-store/av_adapter.py | 639c05d51e888f60621183d6e472e6c169bd3b97 | Python | 2026-05-04T01:25:27.416566 | import os
from pathlib import Path
from uagents_adapter.a2a_outbound import SingleA2AAdapter
# Load env if available
try:
from dotenv import load_dotenv
# Load from examples root if present, then local folder as fallback
ROOT = Path(__file__).resolve().parents[1]
load_dotenv(ROOT / ".env", override=Tru... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-cart-store/skyfire_payment.py | skyfire_payment.py | .py | 5,323 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-cart-store/skyfire_payment.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-cart-store/skyfire_payment.py | ddfdc628cc21a344a14e850f42442d2a4c9b4622 | Python | 2026-05-04T01:25:28.851488 | """Skyfire payment integration matching the seller example semantics."""
import logging
import os
from typing import Any, Dict, Optional
import aiohttp
from jose import JWTError, jwk, jwt
from uagents_adapter.a2a_outbound.ap2.artifacts import PaymentResponse
logger = logging.getLogger(__name__)
JWKS_URL = os.geten... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-cart-store/store_executor.py | store_executor.py | .py | 13,675 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-cart-store/store_executor.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-cart-store/store_executor.py | 0a9e68f4797f857b1c49ce84c8ddc8608d1bc559 | Python | 2026-05-04T01:25:32.287640 | from __future__ import annotations
import asyncio
import os
import re
import uuid
from dataclasses import dataclass
from datetime import datetime, timedelta, timezone
from typing import Any, Dict, List
from a2a.server.agent_execution import AgentExecutor, RequestContext
from a2a.server.events import EventQueue
from a... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/airbnb_agent/airbnb_agent_simple.py | airbnb_agent_simple.py | .py | 2,760 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/airbnb_agent/airbnb_agent_simple.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/airbnb_agent/airbnb_agent_simple.py | cb4873a9459f3c93cbcc9a00b2d3d09732de3342 | Python | 2026-05-04T01:25:33.559806 | """
Simple Airbnb Agent A2A Adapter
This mimics the CLI approach: uagents-a2a --agent-address ... --port 9001
No complex signal handling - just like the original CLI.
"""
from uagents_adapter import A2ARegisterTool
from dotenv import load_dotenv
# Load environment variables from .env file
load_dotenv()
def main():
... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/finance_agent/finance_agent_simple.py | finance_agent_simple.py | .py | 1,900 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/finance_agent/finance_agent_simple.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/finance_agent/finance_agent_simple.py | 9ecec5fa8cb7c5f584c759da33e96450c2f2ce12 | Python | 2026-05-04T01:25:34.735405 | #!/usr/bin/env python3
"""
Simple Finance Agent A2A Adapter
This mimics the CLI approach: uagents-a2a --agent-address ... --port 9002
No complex signal handling - just like the original CLI.
"""
from uagents_adapter import A2ARegisterTool
from dotenv import load_dotenv
# Load environment variables from .env file
loa... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/__main__.py | __main__.py | .py | 4,657 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/__main__.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/__main__.py | b61f13021da8458df2fbf3b062dbf4065fac2036 | Python | 2026-05-04T01:25:36.016460 |
import asyncio
import traceback # Import the traceback module
from collections.abc import AsyncIterator
from pprint import pformat
import gradio as gr
from .routing_agent import (
root_agent as routing_agent,
)
from google.adk.events import Event
from google.adk.runners import Runner
from google.adk.sessions i... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/remote_agent_connection.py | remote_agent_connection.py | .py | 1,111 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/remote_agent_connection.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/remote_agent_connection.py | ed54aa25f08b698aadd5556eb795630fedb5da1f | Python | 2026-05-04T01:25:37.654769 |
from collections.abc import Callable
import httpx
from a2a.client import A2AClient
from a2a.types import (
AgentCard,
SendMessageRequest,
SendMessageResponse,
Task,
TaskArtifactUpdateEvent,
TaskStatusUpdateEvent,
)
from dotenv import load_dotenv
load_dotenv()
TaskCallbackArg = Task | TaskS... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/routing_agent.py | routing_agent.py | .py | 12,296 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/routing_agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/host_agent/routing_agent.py | 1727ae370ed892fd9a2dc5eb1cb678930949a184 | Python | 2026-05-04T01:25:39.144583 | # ruff: noqa: E501
# pylint: disable=logging-fstring-interpolation
import asyncio
import json
import os
import uuid
from typing import Any
import httpx
from a2a.client import A2ACardResolver
from a2a.types import (
AgentCard,
MessageSendParams,
Part,
SendMessageRequest,
SendMessageResponse,
S... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/perplexity_agent/perplexity_agent_simple.py | perplexity_agent_simple.py | .py | 3,061 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/perplexity_agent/perplexity_agent_simple.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/perplexity_agent/perplexity_agent_simple.py | 992078e4285bbd15b710b0f77c59a39f90417c9d | Python | 2026-05-04T01:25:40.336940 | #!/usr/bin/env python3
"""
Simple Perplexity Agent A2A Adapter
This mimics the CLI approach: uagents-a2a --agent-address ... --port 9002
No complex signal handling - just like the original CLI.
"""
from uagents_adapter import A2ARegisterTool
from dotenv import load_dotenv
# Load environment variables from .env file
... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/__main__.py | __main__.py | .py | 2,529 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/__main__.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/__main__.py | 75cf7586e9fee8939d0308b4ccca19354ca8b8bb | Python | 2026-05-04T01:25:41.656490 | import logging
import os
import click
import uvicorn
from a2a.server.apps import A2AStarletteApplication
from a2a.server.request_handlers import DefaultRequestHandler
from a2a.server.tasks import InMemoryTaskStore
from a2a.types import (
AgentCapabilities,
AgentCard,
AgentSkill,
)
from .weather_agent impo... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_agent.py | weather_agent.py | .py | 1,216 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_agent.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_agent.py | 8c7cee786416a49890006e595c5fb539b0395759 | Python | 2026-05-04T01:25:42.979549 | import os
from google.adk.agents import LlmAgent
from google.adk.tools.mcp_tool.mcp_toolset import (
MCPToolset,
StdioServerParameters,
)
def create_weather_agent() -> LlmAgent:
"""Constructs the ADK agent."""
# Get the directory of this file to construct absolute path
current_dir = os.path.dirnam... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_executor.py | weather_executor.py | .py | 7,456 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_executor.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_executor.py | 215c0ecf9995ee11608dd00d5f405cc830f69912 | Python | 2026-05-04T01:25:44.347838 | import logging
from typing import TYPE_CHECKING
from a2a.server.agent_execution import AgentExecutor
from a2a.server.agent_execution.context import RequestContext
from a2a.server.events.event_queue import EventQueue
from a2a.server.tasks import TaskUpdater
from a2a.types import (
AgentCard,
FilePart,
File... |
fetchai/innovation-lab-examples | https://github.com/fetchai/innovation-lab-examples | https://api.github.com/repos/fetchai/innovation-lab-examples | fetchai | innovation-lab-examples | A curated collection of comprehensive Fetch.ai Innovation Lab examples, showcasing advanced use cases and detailed implementations beyond the main documentation. | 992 | 34 | 992 | mit | main | 2025-06-16T08:07:28 | 2026-05-03T18:05:59 | [] | {
"Python": 23375290,
"Cython": 63937,
"Shell": 22976,
"HTML": 20209,
"TypeScript": 17812,
"Dockerfile": 10741,
"PowerShell": 10741,
"Roff": 7889,
"JavaScript": 4636,
"Nushell": 2772,
"Batchfile": 2018,
"Makefile": 1490,
"CSS": 664,
"Go Template": 356
} | false | 5 | a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_mcp.py | weather_mcp.py | .py | 8,324 | https://github.com/fetchai/innovation-lab-examples/blob/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_mcp.py | https://raw.githubusercontent.com/fetchai/innovation-lab-examples/main/a2a-uAgents-Integration/a2a-Inbound-Communication/Multiagent-Planner/weather_agent/weather_mcp.py | b60e03036f1c9b2cedc2ff76aca51025b9544ec2 | Python | 2026-05-04T01:25:45.556391 | import json
from typing import Any
import httpx
from geopy.exc import GeocoderServiceError, GeocoderTimedOut
from geopy.geocoders import Nominatim
from mcp.server.fastmcp import FastMCP
# Initialize FastMCP server
mcp = FastMCP('weather')
# --- Configuration & Constants ---
BASE_URL = 'https://api.weather.gov'
US... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.