Skip to content
View felipeofdev-ai's full-sized avatar
:electron:
<Online>
:electron:
<Online>

Block or report felipeofdev-ai

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
felipeofdev-ai/README.md

Felipe Fernandes

Systems Engineer · Python · Open Source Contributor · AI & Backend

LinkedIn Email Location


Open Source

Home Assistant Core — PR #163908 (em review)

Correcao de bug critico que afetou todos os usuarios de OpenAI e Anthropic apos a atualizacao 2026.1.0.

Problema: Os intents HassStartTimer e HassDecreaseTimer geravam schemas JSON com anyOf no nivel raiz — rejeitado pelas APIs da OpenAI e Anthropic com HTTP 400.

Solucao: Implementei sanitize_tool_schema() em homeassistant/helpers/llm_schema.py, um helper compartilhado que sanitiza o schema antes de enviar para qualquer provider LLM. Aplicado em ambas as integracoes (openai_conversation e anthropic).

# homeassistant/helpers/llm_schema.py
def sanitize_tool_schema(schema: dict[str, Any]) -> dict[str, Any]:
    """Remove root-level anyOf/oneOf/allOf/not/enum before sending to LLM APIs."""
    if not UNSUPPORTED_ROOT_SCHEMA_KEYS.intersection(schema):
        return schema
    sanitized = {k: v for k, v in schema.items() if k not in UNSUPPORTED_ROOT_SCHEMA_KEYS}
    sanitized["required"] = []
    return sanitized

Repositorio: 84k stars · 2M+ usuarios · Maior projeto open source de automacao residencial do mundo

🔗 PR #163908 · Fecha issues #160462 #160540 #160565


TheAlgorithms/Python — PR #14281 (em review)

Restauracao de algoritmos quebrados/desabilitados nas categorias Machine Learning, Neural Network e Quantum Computing.

🔗 PR #14281


Projetos

BridgeTrace AI

Plataforma de rastreabilidade financeira usando teoria de grafos e IA generativa. Modela fluxos entre sistemas bancarios (PIX) e redes blockchain com deteccao de anomalias.

Stack: Python · FastAPI · NetworkX · PostgreSQL

🔗 Repositorio · Demo


TrustHire

Analisador de ofertas de emprego e mensagens de recrutamento com deteccao de sinais de risco usando IA.

Stack: Python · FastAPI · Stripe

🔗 Backend · Frontend


Stack

Languages   Python (principal) · SQL · JavaScript
Backend     FastAPI · REST APIs · PostgreSQL · Redis · Docker
AI / ML     OpenAI API · Anthropic API · LLM integrations · algoritmos do zero
Data        Pandas · NetworkX · ETL pipelines · graph analysis
Quality     mypy · ruff · pytest · type hints · CI/CD

Contato

Remote · UTC-3 · Aberto a oportunidades globais

felipe.of.dev@gmail.com · LinkedIn

Pinned Loading

  1. BridgeTrace-AI BridgeTrace-AI Public

    Research-grade Python project that models and explains financial flows across banking systems (PIX) and blockchain networks using graph theory and Generative AI, focusing on traceability, risk anal…

    Python 1

  2. quantum-observer-ai quantum-observer-ai Public

    A generative AI decision engine that preserves uncertainty, models parallel futures, and collapses decisions through observer interaction.

    Python

  3. trusthire trusthire Public

    AI-assisted analyzer that evaluates job offers and recruitment messages to detect risk signals, improve trust, and help professionals make safer decisions.

    Python 1

  4. Meridian Meridian Public

    The Fixed Point of Truth for Enterprise Engineering Governance

    TypeScript

  5. TheAlgorithms/Python TheAlgorithms/Python Public

    All Algorithms implemented in Python

    Python 218k 50.1k

  6. home-assistant/core home-assistant/core Public

    🏡 Open source home automation that puts local control and privacy first.

    Python 85k 36.8k