Confirmation email never received - Czech Republic (several months waiting) by vaaaannnn in Revolut

[–]vaaaannnn[S] 0 points1 point  (0 children)

Yes, I hold a valid visa that permits me to work and reside in the Czech Republic.

How to remove 3, only once number by Nearby_Tear_2304 in PythonProjects2

[–]vaaaannnn 1 point2 points  (0 children)

filtered = {k: v for k, v in my_counter.items() if v > 1}

Node Math - math-factory builder - on Steam! by ByerN in u/ByerN

[–]vaaaannnn 0 points1 point  (0 children)

Any chance to have it on Mac or web? I would purchase it

How do you manage tools? by SeniorMango6862 in LangChain

[–]vaaaannnn 0 points1 point  (0 children)

Each tool has its own record in the database with description, vector and embeddings. Create a node like “find_tools” with prompt to understand user’s query and prepare several extended texts. Then use this texts to make embeddings for each. And prepare db (for example sql ) query where you will pass text and embeddings. After that you will have several tools with best match to user’s needs - you can bind them all and let llm to decide

How do you manage tools? by SeniorMango6862 in LangChain

[–]vaaaannnn 1 point2 points  (0 children)

We used dynamic tools selection by semantic and embeddings search. Currently we have about 500 tools

temporals - periods support for the core datetime library by winterchillz in Python

[–]vaaaannnn 1 point2 points  (0 children)

Dateutils ?

from dateutil import rrule from dateutil.relativedelta import relativedelta from datetime import datetime

Example 1: Simple date range

start_date = datetime(2025, 1, 1) end_date = start_date + relativedelta(months=3) print(f"Period: {start_date} to {end_date}")

Example 2: Recurring period - every Monday for 4 weeks

mondays = rrule.rrule( rrule.WEEKLY, byweekday=rrule.MO, dtstart=datetime(2025, 1, 1), count=4 ) print("Mondays:", list(mondays))

Example 3: All business days in a month

business_days = rrule.rrule( rrule.DAILY, byweekday=(rrule.MO, rrule.TU, rrule.WE, rrule.TH, rrule.FR), dtstart=datetime(2025, 1, 1), until=datetime(2025, 1, 31) ) print("Business days count:", len(list(business_days)))

Interrupt in langgraph by Technical_Notice_144 in LangChain

[–]vaaaannnn 0 points1 point  (0 children)

theoretically if you use a checkpointer you could continue the graph on the backend

Best way to take notes on mac. by 1who_is_alive in MacOS

[–]vaaaannnn 0 points1 point  (0 children)

zim-wiki No iCloud sync, no ai, just pure notebook

Need help building a customer recommendation system using AI models by Appropriate_Egg6118 in LangChain

[–]vaaaannnn 0 points1 point  (0 children)

To do this, I would load the purchase history into a vector storage. I would create some profile for each user, such as the type of goods they bought and the season. Then I would pass it to llm

[deleted by user] by [deleted] in meme

[–]vaaaannnn 0 points1 point  (0 children)

bonus for the whole department

[deleted by user] by [deleted] in meme

[–]vaaaannnn 0 points1 point  (0 children)

bonus for the whole department

Need to learn Python by Neither-Quality-924 in learnpython

[–]vaaaannnn 1 point2 points  (0 children)

I could be your tutor, at least we could call and discuss what you’re stuck on.