File tree Expand file tree Collapse file tree 5 files changed +506
-3
lines changed
Expand file tree Collapse file tree 5 files changed +506
-3
lines changed Original file line number Diff line number Diff line change 11name = " gRPCClient"
22uuid = " aaca4a50-36af-4a1d-b878-4c443f2061ad"
3- authors = [" Carroll Vance <cs.vance@icloud.com>" ]
43version = " 1.0.0"
4+ authors = [" Carroll Vance <cs.vance@icloud.com>" ]
55
66[deps ]
77FileWatching = " 7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
@@ -10,14 +10,14 @@ PrecompileTools = "aea7be01-6a6a-4083-8856-8a6e6704d82a"
1010ProtoBuf = " 3349acd9-ac6a-5e09-bcdb-63829b23a429"
1111
1212[compat ]
13- julia = " 1.10"
1413FileWatching = " ^1.10"
1514LibCURL = " ~0.6.4, 1"
1615PrecompileTools = " ^1.2"
1716ProtoBuf = " ~1.2.1"
17+ julia = " 1.10"
1818
1919[extras ]
2020Test = " 8dfed614-e22c-5e08-85e1-65c5234f0b40"
2121
2222[targets ]
23- test = [" Test" ]
23+ test = [" Test" ]
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ gRPCClient.jl aims to be a production grade gRPC client emphasizing performance
1212## Documentation
1313
1414The documentation for gRPCClient.jl can be found [ here] ( https://juliaio.github.io/gRPCClient.jl ) .
15+ LLM / agent friendly documentation is available in ` docs/src/llms.txt ` .
1516
1617## Benchmarks
1718
Original file line number Diff line number Diff line change 1+ using Documenter
2+ using gRPCClient
3+
4+ makedocs (
5+ sitename = " gRPCClient.jl" ,
6+ # NOTE: This is not implemented in upstream Documenter.jl
7+ # I maintain my own fork that I use in order to produce Markdown output
8+ # https://github.com/csvance/Documenter.jl/tree/markdown-output
9+ format = Documenter. MarkdownDoc (),
10+ modules = [gRPCClient]
11+ )
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ julia --project=docs << EOF
4+ using Pkg
5+ Pkg.add(url="https://github.com/csvance/Documenter.jl", rev="markdown-output")
6+ Pkg.develop(path=".")
7+ EOF
8+
9+ julia --project=docs docs/make_llms.jl
10+ cp docs/build/index.md docs/src/llms.txt
11+
12+ julia --project=docs << EOF
13+ using Pkg
14+ Pkg.add("Documenter")
15+ Pkg.rm("gRPCClient")
16+ EOF
You can’t perform that action at this time.
0 commit comments