Skip to content

Developing wallet connect functionality#19

Merged
Darliewithrow merged 2 commits into
copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2from
copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2-again
Jun 24, 2026
Merged

Developing wallet connect functionality#19
Darliewithrow merged 2 commits into
copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2from
copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2-again

Conversation

Copilot AI commented Jun 18, 2026

Copy link
Copy Markdown
Contributor

Pull request created by AI Agent

Copilot AI and others added 2 commits June 18, 2026 03:08
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>
Co-authored-by: Darliewithrow <216807437+Darliewithrow@users.noreply.github.com>

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the repository’s documentation by replacing the placeholder README with a step-by-step guide explaining how to resolve GitHub’s “Uploads are disabled” error when contributing to ethereum/EIPs, focusing on the standard fork/branch/PR workflow.

Changes:

  • Replaces the existing one-line README with a full contribution workflow guide for ethereum/EIPs.
  • Adds troubleshooting guidance, common mistakes, and a resources section with relevant links.

Comment thread README.md
Comment thread README.md
Comment thread README.md
@Darliewithrow

Copy link
Copy Markdown
Owner

wc:b9a297f69fcab9883860d1e840851dd295355271198ea2c11d48588f109e5b44@2?relay-protocol=irn&symKey=6a377e40cd8ed1d192414832aaf46d589e761ce8ab7cef708d69b3a20415ad35&expiryTimestamp=1781751920

@Darliewithrow

Copy link
Copy Markdown
Owner

import os
import textwrap
import uuid
from dataclasses import dataclass
from pathlib import Path

from fastembed.rerank.cross_encoder import TextCrossEncoder
from openai import OpenAI
from qdrant_client import QdrantClient, models

VENICE_BASE_URL = "https://api.venice.ai/api/v1"
CHAT_MODEL = "kimi-k2-6"
EMBEDDING_MODEL = "text-embedding-bge-m3"
RERANKER_MODEL = "Xenova/ms-marco-MiniLM-L-6-v2"
COLLECTION_NAME = "private_rag_bot"

@DataClass
class SourceDocument:
content: str
metadata: dict

@DataClass
class RankedChunk:
content: str
metadata: dict
vector_score: float
rerank_score: float

@Darliewithrow Darliewithrow changed the base branch from main to copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2 June 24, 2026 01:36
@Darliewithrow Darliewithrow merged commit 85342b7 into copilot/wc-b9a297f69fcab9883860d1e840851dd295355271198ea2 Jun 24, 2026
1 check passed
@Darliewithrow

Copy link
Copy Markdown
Owner

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants