azepug | Unsorted

Telegram-канал azepug - AzerbaijanPUG(Official)

912

Azerbaijan Python Users Group

Subscribe to a channel

AzerbaijanPUG(Official)

Post request script secemmirem

Читать полностью…

AzerbaijanPUG(Official)

Salam movzudan kenar sual verecem postman ilr bagli

Читать полностью…

AzerbaijanPUG(Official)

Normalda Factory boy işlədirdim. amma hər dəfə yeni model yaradanda Factory-sini yazıb əlavə eləmək yerinə, hazır işi avtomatlaşdıran tool axtarıram

Читать полностью…

AzerbaijanPUG(Official)

28 Avqust saat Bakı vaxtı ilə saat 16:00 -da https://leaddev.com/ platformasında canlı panel müzakirədə çıxış edəcəm.

Mövzu, "How can AI actually help your teams?" olacaq. Ətraflı məlumat və qeydiyyat üçün https://leaddev.com/events/how-can-ai-actually-help-your-teams

Bu LeadDev platformasında sayca ikinci panelist kimi iştirakım olacaq. Çayınızı, kofenizi, pivənizi götürün qoşulun.

Читать полностью…

AzerbaijanPUG(Official)

Salam axshaminiz xeyir. Reminder olaraq qeyd etmek isteyirdim ki, ayin 20sinnen sonra gonderilen CV ler qebul edilmeyecek, evaluation processi bashlandigi uchun.

Читать полностью…

AzerbaijanPUG(Official)

https://courses.pythontest.com/hello-pytest

Читать полностью…

AzerbaijanPUG(Official)

bele bir markdown duzeltdi. mene pdf ve ya makrdown lazim idi, istenilen text tipli fayl. onu knowledge base kimi istifade edirem

# API Concepts

This page describes the high-level concepts of the LangGraph Cloud API. The conceptual guide of LangGraph (Python library) is [here](../../concepts/index.md).

## Data Models

The LangGraph Cloud API consists of a few core data models: [Assistants](#assistants), [Threads](#threads), [Runs](#runs), and [Cron Jobs](#cron-jobs).

### Assistants

An assistant is a configured instance of a [`CompiledGraph`][compiledgraph]. It abstracts the cognitive architecture of the graph and contains instance specific configuration and metadata. Multiple assistants can reference the same graph but can contain different configuration and metadata, which may differentiate the behavior of the assistants. An assistant (i.e. the graph) is invoked as part of a run.

The LangGraph Cloud API provides several endpoints for creating and managing assistants. See the [API reference](../reference/api/api_ref.html#tag/assistantscreate) for more details.

#### Configuring Assistants

You can save custom assistants from the same graph to set different default prompts, models, and other configurations without changing a line of code in your graph. This allows you the ability to quickly test out different configurations without having to rewrite your graph every time, and also give users the flexibility to select different configurations when using your LangGraph application. See <a href="https://langchain-ai.github.io/langgraph/cloud/how-tos/cloud_examples/configuration_cloud/">this</a> how-to for information on how to configure a deployed graph.

### Threads

A thread contains the accumulated state of a group of runs. If a run is executed on a thread, then the [state][state] of the underlying graph of the assistant will be persisted to the thread. A thread's current and historical state can be retrieved. To persist state, a thread must be created prior to executing a run.

The state of a thread at a particular point in time is called a checkpoint.

For more on threads and checkpoints, see this section of the [LangGraph conceptual guide](../../concepts/low_level.md#checkpointer).

The LangGraph Cloud API provides several endpoints for creating and managing threads and thread state. See the [API reference](../reference/api/api_ref.html#tag/threadscreate) for more details.

### Runs

Читать полностью…

AzerbaijanPUG(Official)

django-da http ilə göndərir

Читать полностью…

AzerbaijanPUG(Official)

Hezewrat, bu repodaki docoumentationlari men nece pdf edim?
https://github.com/langchain-ai/langgraph/blob/main/docs/mkdocs.yml

Читать полностью…

AzerbaijanPUG(Official)

Belke birinde tokenli sorgu gonderirsiz, o birinde tokensiz?

Читать полностью…

AzerbaijanPUG(Official)

Salam, Django ilə yazdığım proyket-də veb-də media folder-inin içində şəkillər görsənir, amma mobil tərəfdə görsənmir. səbəbi nə ola bilər?

Читать полностью…

AzerbaijanPUG(Official)

https://github.com/ploomber/jupysql

Читать полностью…

AzerbaijanPUG(Official)

birinci link cox qeseng izah edir

Читать полностью…

AzerbaijanPUG(Official)

Dokumentasiyasi da yaxshidi

Читать полностью…

AzerbaijanPUG(Official)

Hezerat, Pydantic ile bagli meslehetli tutorial ne var? videolar coxdur. meslehetli olanlardan isteyirem

Читать полностью…

AzerbaijanPUG(Official)

Mende postmanin yaninda ancaq pre request script yazilib

Читать полностью…

AzerbaijanPUG(Official)

Oxford-da research eden bir qaqas JSON spesifikasiyasinin daha efficient olmasi ucun bele bir proyekt uzerinde calisir. Aranizda json-un hecmine onem verecek "hessas" proyektlerde isleyen varsa maraqli gele biler

https://jsonbinpack.sourcemeta.com/

Meqsed low power, iot ve s sahelerde limitli bandwidth ucun daha effektiv olmaqdir. Detalli benchmarklar ucun paper de yazilib https://arxiv.org/pdf/2201.03051

Читать полностью…

AzerbaijanPUG(Official)

Salam, Django-da avtomatik mock data dolduran module bilirsiniz ? internetdə baxdıqlarım köhnə verisyalara aid olur.

Читать полностью…

AzerbaijanPUG(Official)

https://github.com/cookiecutter/cookiecutter-django

Читать полностью…

AzerbaijanPUG(Official)

https://www.linkedin.com/posts/tiangolo_i-just-noticed-that-astral-s-ruff-now-has-activity-7229975707483836418-2HZz?utm_source=share&amp;utm_medium=member_android

Читать полностью…

AzerbaijanPUG(Official)

ilk baxishdan problem gormurem duzeltdiyi faylda

Читать полностью…

AzerbaijanPUG(Official)

Bele bir kodla markdown eledim. chatgpt dedim meseleni, kodu yazdi menim ucun:

import os
import glob

def combine_markdown_files(source_dir, output_file):
# Find all markdown files recursively in the source directory
markdown_files = glob.glob(os.path.join(source_dir, '**/*.md'), recursive=True)

# Sort files to maintain a consistent order
markdown_files.sort()

with open(output_file, 'w', encoding='utf-8') as outfile:
for file in markdown_files:
with open(file, 'r', encoding='utf-8') as infile:
outfile.write(infile.read())
outfile.write('\n\n') # Add a newline between documents

print(f"Combined {len(markdown_files)} Markdown files into {output_file}")

if __name__ == "__main__":
# Define the directory where the markdown files are located and the output file name
source_directory = "docs"
output_filename = "combined_documentation.md"

# Combine the markdown files
combine_markdown_files(source_directory, output_filename)

Читать полностью…

AzerbaijanPUG(Official)

bəli, bəlkə http və https ilə əlaqəlidi

Читать полностью…

AzerbaijanPUG(Official)

Mobil appde gelen response etrafli baxmisiz? Vebdeki ile eynidir?

Читать полностью…

AzerbaijanPUG(Official)

Rest framework ilə yazıram bu arada

Читать полностью…

AzerbaijanPUG(Official)

hee, cox qeseng yazilib. bele ishler gorende adam sevinir

Читать полностью…

AzerbaijanPUG(Official)

💠Python Developer
💥Tunel.az
🖇https://smartjob.az/vacancy/61679-python-developer

Читать полностью…

AzerbaijanPUG(Official)

Arjan cox ela muellimdir

Читать полностью…

AzerbaijanPUG(Official)

https://youtu.be/Vj-iU-8_xLs
https://youtu.be/dOO3GmX6ukU

Читать полностью…

AzerbaijanPUG(Official)

Salam. suali isteyirsiz ele bura yazin, bilmek olmaz kim cavab bilir ya yox

Читать полностью…
Subscribe to a channel