Step | Type | Tool Call ID | Chunk |
---|---|---|---|
0 - | human | - | Chunk 1 - 1 message |
4 - | ai | toolu_01SwrCizJFp6FWsXEeeKi8pH | Chunk 2 - 1 message |
0 - subgraph_run:20d8271c-c78a-87a4-a940-35532bd93068 | system | - | Chunk 3 - 1 message |
4 - subgraph_run:20d8271c-c78a-87a4-a940-35532bd93068 | ai | call_rohnIlJv1VwX91zmMpohb8S0 | Chunk 4 - 7 messages |
5 - subgraph_run:20d8271c-c78a-87a4-a940-35532bd93068 | tool | call_rohnIlJv1VwX91zmMpohb8S0 | Chunk 4 - 7 messages |
6 - subgraph_run:20d8271c-c78a-87a4-a940-35532bd93068 | ai | call_cDsV4RqzPOaBRHlPiaZIWh15 | Chunk 4 - 7 |
Here's the complete list of talks from PyCon DE 2025:
Talk Title | Speaker | Track |
---|---|---|
Streaming at 30,000 Feet: A Real-Time Journey from APIs to Stream Processing | Felix Leon Buck | Programming & Software Engineering |
Building Bare-Bones Game Physics in Rust with Python Integration | Sam Kaveh | Rust |
Conquering PDFs: document understanding beyond plain text | Ines Montani | Natural Language Processing & Audio |
Decoding Topics: A Comparative Analysis of Python's Leading Topic Modeling Libraries | Dr. Lisa Andreevna Chalaguine | Natural Language Processing & Audio |
Django's Dilemma: Balancing Simplicity with Scalability | Anette Haferkorn | Django & Web |
Using Causal thinking to make Media Mix Modeling | Carlos Trujillo | PyData & Scientific Libraries Stack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKFvWoQGC+lwSEcWy0XdMALCAqzD6dbC9sVKbE89QdJy horse@aktech |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"eventDetail": { | |
"eventName": "ActiveCellChangeEvent", | |
"eventTime": 1699894451772, | |
"eventInfo": { | |
"cells": [ | |
{ | |
"id": "3d5a4322-0229-4d8c-86a3-b4302ecd2e1b", | |
"index": 0 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"group": "Cirun TOS", | |
"detail": "Self Hosted Runners via Cirun.io" | |
}, | |
{ | |
"group": "Conda Forge TOS", | |
"detail": "You Accept the following TOS" | |
} | |
] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import logging | |
def timer(func): | |
def inner(*args, **kwargs): | |
start = time.time() | |
rv = func(*args, **kwargs) | |
logger.info(f"Time taken to execute {func}: {time.time() - start}") | |
return rv |
NewerOlder