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
;; Create a map without quoting: (an interesting defmacro exercise!) | |
;; (qmap city nyc population 14000000) | |
;; => {"city" "nyc", "population" "14000000"} | |
;; (some special chars still need to be quoted though!) | |
(defmacro qmap [& args] | |
`(apply hash-map (map name (map str '~args)))) | |
;; conf settings: |
This file has been truncated, but you can view the full file.
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
Logged in as: prasadch | |
Logs for container_1428474791204_251895_01_000001 | |
ResourceManager | |
RM Home | |
NodeManager | |
Tools | |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.yahoo.floura</groupId> | |
<artifactId>floura</artifactId> | |
<version>2.0.0</version> | |
<packaging>jar</packaging> | |
<name>floura</name> | |
<properties> | |
<maven.compiler.source>1.7</maven.compiler.source> |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.yahoo.floura</groupId> | |
<artifactId>floura</artifactId> | |
<version>2.0.0</version> | |
<packaging>jar</packaging> | |
<name>floura</name> | |
<properties> | |
<maven.compiler.source>1.7</maven.compiler.source> |
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
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.yahoo.floura</groupId> | |
<artifactId>floura</artifactId> | |
<version>2.0.0</version> | |
<packaging>jar</packaging> | |
<name>floura</name> | |
<properties> | |
<maven.compiler.source>1.7</maven.compiler.source> |
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
''' | |
Example of using blankly to decide trade based on all asset prices using a global state-list | |
''' | |
import blankly | |
import numpy as np | |
# global list of StrategyStates, one per symbol (price_event) | |
states = [] | |
def trade(): |
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 blankly | |
from blankly import StrategyState | |
import numpy as np | |
def trade(state: StrategyState): | |
''' | |
Example of how to decide a trade based on ALL assets | |
''' | |
symbols = state.symbol |
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
/Users/pchalasani/Git/langroid-examples/.venv/lib/python3.11/site-packages/langroid/parsing/docu │ | |
│ ment_parser.py:301 in iterate_pages │ | |
│ │ | |
│ 298 │ def iterate_pages(self) -> Generator[Tuple[int, Any], None, None]: # type: ignore │ | |
│ 299 │ │ from unstructured.partition.pdf import partition_pdf │ | |
│ 300 │ │ │ | |
│ ❱ 301 │ │ elements = partition_pdf(file=self.doc_bytes, include_page_breaks=True) │ | |
│ 302 │ │ for i, el in enumerate(elements): │ | |
│ 303 │ │ │ yield i, el │ | |
│ 304 │ |
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
from typing import Any, Callable, cast, Optional, Union | |
import textwrap | |
import chainlit as cl | |
from datetime import datetime | |
from chainlit.sync import run_sync | |
from chainlit.message import AskMessageBase, AskUserMessage, MessageStepType | |
from chainlit.types import AskSpec | |
from chainlit.step import StepDict | |
from chainlit.config import config | |
from chainlit.telemetry import trace_event |
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
// Zed settings | |
// | |
// For information on how to configure Zed, see the Zed | |
// documentation: https://zed.dev/docs/configuring-zed | |
// | |
// To see all of Zed's default settings without changing your | |
// custom settings, run the `open default settings` command | |
// from the command palette or from `Zed` application menu. | |
{ | |
// The settings for slash commands. |
OlderNewer