Han-Ru Chen (Future-Outlier)
Han-Ru Chen (Future-Outlier)
在英文版的LeetCode本題上: https://leetcode.com/problems/word-break/ 有提到word.length()
class Solution { public: int dirs[4][2] = {{0,1}, {1,0}, {0,-1},{-1,0}}; vector generateMatrix(int n) { vector M; M.resize(n, vector(n, 0)); int final_num = n*n; int start = 1; int i =...
### Motivation: Why do you think this is important? When updating agent values in helm, it is hard for beginners to notice we need to update both helm charts in...
### Describe the bug Now, when using agent with loglinks and `RUNNING` phase, we can't show loglinks. ### Expected behavior We should show loglinks like the `initialize` phase does. ###...
## Tracking issue https://github.com/flyteorg/flyte/issues/3936 ## Why are the changes needed? We want to support messages and loglinks for agent tasks like databricks agent. ## Important Messages If we remove these...
## Tracking issue https://github.com/flyteorg/flyte/issues/4486 ## Why are the changes needed? For a better user experience. ## What changes were proposed in this pull request? 1. use `mashumaro>=3.11`, so that we...
## Tracking issue https://github.com/flyteorg/flyte/issues/3936 ## Why are the changes needed? Let users can observe available agents in the agent pod. ## What changes were proposed in this pull request? add...
## Tracking issue https://github.com/flyteorg/flyte/issues/3876 ## Why are the changes needed? We want to support users to run `raw-container` task locally. Note: I didn't support ~~`datetime.timedelta`~~, `List` and `Dict`. Since I...
## Tracking issue https://github.com/flyteorg/flyte/issues/3936 ## Example ```python import os from typing import Any, Union from flytekit import workflow from langchain_core.output_parsers import StrOutputParser from langchain_core.prompts.prompt import PromptTemplate from langchain_openai import ChatOpenAI...
## Tracking issue https://github.com/flyteorg/flyte/issues/3936 ## Why are the changes needed? Make every log in the agent server can be shown in flyte console instead of the agent server. ## What...